Browse Source

more spinlock cleanup

Nicolas Cannasse 7 năm trước cách đây
mục cha
commit
151f6de018
1 tập tin đã thay đổi với 0 bổ sung13 xóa
  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