Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 6126 invoked by uid 500); 5 Oct 2001 17:11:22 -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 6106 invoked from network); 5 Oct 2001 17:11:22 -0000 Date: 5 Oct 2001 17:08:24 -0000 Message-ID: <20011005170824.45499.qmail@icarus.apache.org> From: bnicholes@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/misc/netware aprlib.imp X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N bnicholes 01/10/05 10:08:24 Modified: misc/netware aprlib.imp Log: Updated with the new locking API's Revision Changes Path 1.4 +17 -0 apr/misc/netware/aprlib.imp Index: aprlib.imp =================================================================== RCS file: /home/cvs/apr/misc/netware/aprlib.imp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- aprlib.imp 2001/09/28 14:05:23 1.3 +++ aprlib.imp 2001/10/05 17:08:24 1.4 @@ -265,6 +265,11 @@ apr_table_vdo, apr_terminate, apr_terminate2, + apr_thread_cond_create, + apr_thread_cond_wait, + apr_thread_cond_signal, + apr_thread_cond_broadcast, + apr_thread_cond_destroy, apr_thread_create, apr_thread_data_get, apr_thread_data_set, @@ -274,6 +279,18 @@ #apr_thread_once, #apr_thread_once_init, apr_thread_yield, + apr_thread_mutex_create, + apr_thread_mutex_lock, + apr_thread_mutex_trylock, + apr_thread_mutex_unlock, + apr_thread_mutex_destroy, + apr_thread_rwlock_create, + apr_thread_rwlock_rdlock, + apr_thread_rwlock_tryrdlock, + apr_thread_rwlock_wrlock, + apr_thread_rwlock_trywrlock, + apr_thread_rwlock_unlock, + apr_thread_rwlock_destroy, apr_threadattr_create, apr_threadattr_detach_get, apr_threadattr_detach_set,