From 45b03b39c4dddfb89a7fddb4b831903e8bc18b94 Mon Sep 17 00:00:00 2001 From: Waldemar Kornewald Date: Tue, 20 Dec 2005 10:59:34 +0000 Subject: [PATCH] Also deleted TLSInit.cpp. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15607 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../network/compat/libbind/src/TLSInit.cpp | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/kits/network/compat/libbind/src/TLSInit.cpp diff --git a/src/kits/network/compat/libbind/src/TLSInit.cpp b/src/kits/network/compat/libbind/src/TLSInit.cpp deleted file mode 100644 index 86e2c9187f..0000000000 --- a/src/kits/network/compat/libbind/src/TLSInit.cpp +++ /dev/null @@ -1,20 +0,0 @@ -#include -#include - -// XXX: this is an ugly hack because we don't support mutexes -extern int32 gIRSInitKey; -extern int32 gGaiStrerrorKey; - -class TLSInit { - public: - TLSInit(); -}; - -TLSInit::TLSInit() -{ - gIRSInitKey = tls_allocate(); - gGaiStrerrorKey = tls_allocate(); -} - - -static TLSInit __tlsinit_hack;