| 2419 | |
| 2420 | #ifdef JEMALLOC_JET |
| 2421 | size_t |
| 2422 | prof_log_bt_count(void) { |
| 2423 | size_t cnt = 0; |
| 2424 | prof_bt_node_t *node = log_bt_first; |
| 2425 | while (node != NULL) { |
| 2426 | cnt++; |
| 2427 | node = node->next; |
| 2428 | } |
| 2429 | return cnt; |
| 2430 | } |
| 2431 | |
| 2432 | size_t |
| 2433 | prof_log_alloc_count(void) { |
no outgoing calls