I'm running the following code inside of an apache module (actually
inside of a web service running inside 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 module runs in the mod_gsoap module (it's running as a gsoap web
service).  It's running on Apache 2.2.3 on Windows.

The problem is that we're seeing a thread handle leak.  I can see in the
logs that a thread is created and should be exiting correctly, but when
I use Handle.exe to dump all handles I can still see that the thread ID
is still in the list, even after exiting.  From my debugging it doesn't
appear to be the original handle, but a copy of the handle for some
reason.

I've added the above code into a simple test program and the program
seems to run as expected, the handle count doesn't go up, the threads
are created, and when the threads die the thread count goes down.

I've also used the standard windows ::CreateThread and _beginthread
calls with similar types of 'leaks'.

When I dump the handle list for the apache process I see the thread
handle for the thread that should've since been released.

Has anyone seen such behavior?  It's strange to me and I'll admit that
I'm not completely aware of the Apache internals that would cause
something like this.

Any help would be greatly appreciated.  Thanks.

Reply via email to