| 3261 | } |
| 3262 | |
| 3263 | AP_DECLARE(apr_thread_t *) ap_thread_current(void) |
| 3264 | { |
| 3265 | #if AP_HAS_THREAD_LOCAL |
| 3266 | return current_thread; |
| 3267 | #else |
| 3268 | return NULL; |
| 3269 | #endif |
| 3270 | } |
| 3271 | |
| 3272 | #endif /* APR_VERSION_AT_LEAST(1,8,0) && !defined(AP_NO_THREAD_LOCAL) */ |
| 3273 |
no outgoing calls
no test coverage detected