On 6/13/07, Croteau, Beau <[EMAIL PROTECTED]> wrote:
I'm running the following code inside of an apache module:
I think you'd have better luck on the apache module developers list:
http://httpd.apache.org/lists.html#modules-dev
Joshua.
-
I'm running the following code inside of an apache module:
apr_thread_t *thd_arr;
apr_pool_create(&ai->mp, NULL);
apr_threadattr_t *thd_attr;
apr_threadattr_create(&thd_attr, (ai->mp));
apr_threadattr_detach_set(thd_attr,1);
apr_thread_create(&thd_arr, thd_attr, ExecuteAction, ai, ai->mp);
The mo