]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
win32
authorMark Andrews <marka@isc.org>
Tue, 20 Sep 2005 05:38:37 +0000 (05:38 +0000)
committerMark Andrews <marka@isc.org>
Tue, 20 Sep 2005 05:38:37 +0000 (05:38 +0000)
lib/isc/win32/thread.c

index 65c10e118a57d6b54937421e6513e0370d7a6ce1..494fc70239d5e701cb38cf265429c77ea9d46316 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: thread.c,v 1.18.18.4 2005/09/18 07:58:08 marka Exp $ */
+/* $Id: thread.c,v 1.18.18.5 2005/09/20 05:38:37 marka Exp $ */
 
 #include <config.h>
 
@@ -68,23 +68,23 @@ isc_thread_setconcurrency(unsigned int level) {
 }
 
 void *
-isc_key_getspecific(isc_thread_key_t key) {
+isc_thread_key_getspecific(isc_thread_key_t key) {
        return(TlsGetValue(key));
 }
 
 int
-isc_key_setspecific(isc_thread_key_t key, void *value) {
+isc_thread_key_setspecific(isc_thread_key_t key, void *value) {
        return (TlsSetValue(key, value) ? 0 : GetLastError());
 }
 
 int
-isc_key_create(isc_thread_key_t *key, void (*func)(void *)) {
+isc_thread_key_create(isc_thread_key_t *key, void (*func)(void *)) {
        *key = TlsAlloc();
 
        return ((*key != -1) ? 0 : GetLastError());
 }
 
 int
-isc_key_destroy(isc_thread_key_t key) {
+isc_thread_key_destroy(isc_thread_key_t key) {
        return (TlsFree(key) ? 0 : GetLastError());
 }