Nicolas Cannasse 7 роки тому
батько
коміт
151f6de018
1 змінених файлів з 0 додано та 13 видалено
  1. 0 13
      src/std/thread.c

+ 0 - 13
src/std/thread.c

@@ -31,20 +31,12 @@ struct _hl_tls {
 	void *value;
 };
 
-struct _hl_spinlock {
-	void *value;
-};
-
 #elif defined(HL_WIN)
 
 struct _hl_mutex {
 	CRITICAL_SECTION cs;
 };
 
-struct _hl_spinlock {
-	void *value;
-};
-
 #else
 
 #	include <pthread.h>
@@ -59,11 +51,6 @@ struct _hl_tls {
 	pthread_key_t key;
 };
 
-struct _hl_spinlock {
-	pthread_mutex_t lock;
-	void *value;
-};
-
 #endif
 
 // ----------------- ALLOC