| 2441 | } |
| 2442 | |
| 2443 | size_t |
| 2444 | prof_log_thr_count(void) { |
| 2445 | size_t cnt = 0; |
| 2446 | prof_thr_node_t *node = log_thr_first; |
| 2447 | while (node != NULL) { |
| 2448 | cnt++; |
| 2449 | node = node->next; |
| 2450 | } |
| 2451 | return cnt; |
| 2452 | } |
| 2453 | |
| 2454 | bool |
| 2455 | prof_log_is_logging(void) { |
no outgoing calls