소스 검색

more spinlock cleanup

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