diff options
author | Brian Havard <bjh@apache.org> | 2001-10-17 01:14:52 +0000 |
---|---|---|
committer | Brian Havard <bjh@apache.org> | 2001-10-17 01:14:52 +0000 |
commit | 7766686dc815684ea9e10d015dc89a5d1e9161fe (patch) | |
tree | 80a2d565b83c12c8816d13a4597c56a953c982d7 /locks | |
parent | 8067a836a081e31876053dd7e79d7dbba0f371ce (diff) | |
download | apr-7766686dc815684ea9e10d015dc89a5d1e9161fe.tar.gz |
Remove FIXME comment. Yes, OS/2 native locks support nesting.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62436 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'locks')
-rw-r--r-- | locks/os2/thread_mutex.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/locks/os2/thread_mutex.c b/locks/os2/thread_mutex.c index 6565afcd8..543b602da 100644 --- a/locks/os2/thread_mutex.c +++ b/locks/os2/thread_mutex.c @@ -79,7 +79,6 @@ APR_DECLARE(apr_status_t) apr_thread_mutex_create(apr_thread_mutex_t **mutex, new_mutex = (apr_thread_mutex_t *)apr_palloc(pool, sizeof(apr_thread_mutex_t)); new_mutex->pool = pool; - /* FIXME: Can OS/2 do nested (aka recursive) locks natively? */ rc = DosCreateMutexSem(NULL, &(new_mutex->hMutex), 0, FALSE); *mutex = new_mutex; |