diff options
Diffstat (limited to 'threadproc/unix/threadpriv.c')
-rw-r--r-- | threadproc/unix/threadpriv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/threadproc/unix/threadpriv.c b/threadproc/unix/threadpriv.c index e57cb8424..48c2cdd96 100644 --- a/threadproc/unix/threadpriv.c +++ b/threadproc/unix/threadpriv.c @@ -59,7 +59,7 @@ #ifdef HAVE_PTHREAD_H ap_status_t ap_create_thread_private(ap_threadkey_t **key, - void (*dest)(void *), ap_context_t *cont) + void (*dest)(void *), ap_pool_t *cont) { ap_status_t stat; (*key) = (ap_threadkey_t *)ap_palloc(cont, sizeof(ap_threadkey_t)); @@ -136,7 +136,7 @@ ap_status_t ap_get_os_threadkey(ap_os_threadkey_t *thekey, ap_threadkey_t *key) } ap_status_t ap_put_os_threadkey(ap_threadkey_t **key, - ap_os_threadkey_t *thekey, ap_context_t *cont) + ap_os_threadkey_t *thekey, ap_pool_t *cont) { if (cont == NULL) { return APR_ENOCONT; |