]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
isc_thread_key_destroy->isc_thread_key_delete v9.4.0a1
authorMark Andrews <marka@isc.org>
Tue, 20 Sep 2005 06:02:12 +0000 (06:02 +0000)
committerMark Andrews <marka@isc.org>
Tue, 20 Sep 2005 06:02:12 +0000 (06:02 +0000)
lib/isc/win32/libisc.def
lib/isc/win32/thread.c

index 243aaee71c6bc67dcf09a0aee012474d5dee9454..85dea64c7722398aa9e5ad51c13d2018248731e0 100644 (file)
@@ -399,7 +399,7 @@ isc_taskpool_gettask
 isc_thread_create
 isc_thread_join
 isc_thread_key_create
-isc_thread_key_destroy
+isc_thread_key_delete
 isc_thread_key_getspecific
 isc_thread_key_setspecific
 isc_thread_setconcurrency
index 494fc70239d5e701cb38cf265429c77ea9d46316..8c9939718985ea24f3e2686cccd632d7b8bad825 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: thread.c,v 1.18.18.5 2005/09/20 05:38:37 marka Exp $ */
+/* $Id: thread.c,v 1.18.18.6 2005/09/20 06:02:12 marka Exp $ */
 
 #include <config.h>
 
@@ -85,6 +85,6 @@ isc_thread_key_create(isc_thread_key_t *key, void (*func)(void *)) {
 }
 
 int
-isc_thread_key_destroy(isc_thread_key_t key) {
+isc_thread_key_delete(isc_thread_key_t key) {
        return (TlsFree(key) ? 0 : GetLastError());
 }