From cvs-return-2545-apmail-apr-cvs-archive=apr.apache.org@apr.apache.org Thu Dec 13 23:43:03 2001 Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 85903 invoked by uid 500); 13 Dec 2001 23:43:02 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 85890 invoked from network); 13 Dec 2001 23:43:02 -0000 Date: 13 Dec 2001 23:43:01 -0000 Message-ID: <20011213234301.52664.qmail@icarus.apache.org> From: dreid@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/locks/beos thread_mutex.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N dreid 01/12/13 15:43:01 Modified: locks/beos thread_mutex.c Log: Remove an uneeded function and add the accessor thingy so we can build apache again. Revision Changes Path 1.5 +4 -8 apr/locks/beos/thread_mutex.c Index: thread_mutex.c =================================================================== RCS file: /home/cvs/apr/locks/beos/thread_mutex.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- thread_mutex.c 2001/10/28 13:05:51 1.4 +++ thread_mutex.c 2001/12/13 23:43:01 1.5 @@ -114,14 +114,7 @@ return APR_ENOTIMPL; } #endif - -APR_DECLARE(apr_status_t) apr_thread_mutex_child_init(apr_thread_mutex_t **mutex, - const char *fname, - apr_pool_t *pool) -{ - return APR_SUCCESS; -} - + APR_DECLARE(apr_status_t) apr_thread_mutex_lock(apr_thread_mutex_t *mutex) { int32 stat; @@ -186,3 +179,6 @@ } return stat; } + +APR_POOL_IMPLEMENT_ACCESSOR(thread_mutex) +