On Sun, Sep 30, 2001 at 09:45:46AM +0200, Sander Striker wrote: > >> thread_rwlock.c:224: warning: no previous prototype for > >> `apr_thread_rwlock_lock' > >> > >> This should be easy to fix. > > The proto simply isn't in the header file, but I can't tell if > this is intentional and apr_thread_rwlock_lock was just a copy > 'n paste too many in the c file, or that it should actually be > in the header. Aaron?
Nope, that shouldn't be there. There is only _rdlock() and _wrlock(). Those stubs got added so we can have a native-APR rwlock implementation for platforms that don't provide them (like Solaris 2.6). It's on my list of things to do. :) -aaron
