summaryrefslogtreecommitdiff
path: root/locks
diff options
context:
space:
mode:
authorBrian Havard <bjh@apache.org>2001-10-17 01:14:52 +0000
committerBrian Havard <bjh@apache.org>2001-10-17 01:14:52 +0000
commit7766686dc815684ea9e10d015dc89a5d1e9161fe (patch)
tree80a2d565b83c12c8816d13a4597c56a953c982d7 /locks
parent8067a836a081e31876053dd7e79d7dbba0f371ce (diff)
downloadapr-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.c1
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;