From: Michael R Sweet Date: Sat, 10 May 2025 19:56:20 +0000 (-0400) Subject: Add _cupsRWDestroy stub for the no-threading case. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e47ee5170f3e44284289adb5ae1066da25b69eec;p=thirdparty%2Fcups.git Add _cupsRWDestroy stub for the no-threading case. --- diff --git a/cups/thread.c b/cups/thread.c index 57e3315adc..f010c7563d 100644 --- a/cups/thread.c +++ b/cups/thread.c @@ -475,6 +475,17 @@ _cupsMutexUnlock(_cups_mutex_t *mutex) /* I - Mutex */ } +/* + * '_cupsRWDestroy()' - Destroy a reader/writer lock. + */ + +void +_cupsRWDestroy(_cups_rwlock_t *rwlock) /* I - Reader/writer lock */ +{ + (void)rwlock; +} + + /* * '_cupsRWInit()' - Initialize a reader/writer lock. */