| 2430 | } |
| 2431 | |
| 2432 | size_t |
| 2433 | prof_log_alloc_count(void) { |
| 2434 | size_t cnt = 0; |
| 2435 | prof_alloc_node_t *node = log_alloc_first; |
| 2436 | while (node != NULL) { |
| 2437 | cnt++; |
| 2438 | node = node->next; |
| 2439 | } |
| 2440 | return cnt; |
| 2441 | } |
| 2442 | |
| 2443 | size_t |
| 2444 | prof_log_thr_count(void) { |
no outgoing calls