| 131 | |
| 132 | |
| 133 | void profile_dump() |
| 134 | { |
| 135 | if ( profile_hash ) |
| 136 | { |
| 137 | printf( "%10s %12s %12s %12s %10s %10s %s\n", "--count--", "--gross--", |
| 138 | "--net--", "--each--", "--mem--", "--each--", "--name--" ); |
| 139 | hashenumerate( profile_hash, dump_profile_entry, 0 ); |
| 140 | profile_other.name = constant_other; |
| 141 | dump_profile_entry( &profile_other, 0 ); |
| 142 | profile_total.name = constant_total; |
| 143 | dump_profile_entry( &profile_total, (void *)1 ); |
| 144 | } |
| 145 | } |
no test coverage detected