summaryrefslogtreecommitdiffstats
path: root/src/plist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plist.c')
-rw-r--r--src/plist.c39
1 files changed, 23 insertions, 16 deletions
diff --git a/src/plist.c b/src/plist.c
index 454d08c..d0e6c77 100644
--- a/src/plist.c
+++ b/src/plist.c
@@ -63,7 +63,6 @@ static void internal_plist_deinit(void)
63} 63}
64 64
65#ifdef WIN32 65#ifdef WIN32
66
67typedef volatile struct { 66typedef volatile struct {
68 LONG lock; 67 LONG lock;
69 int state; 68 int state;
@@ -83,7 +82,29 @@ static void thread_once(thread_once_t *once_control, void (*init_routine)(void))
83 } 82 }
84 InterlockedExchange(&(once_control->lock), 0); 83 InterlockedExchange(&(once_control->lock), 0);
85} 84}
85#else
86static pthread_once_t init_once = PTHREAD_ONCE_INIT;
87static pthread_once_t deinit_once = PTHREAD_ONCE_INIT;
88#define thread_once pthread_once
89#endif
90
91#ifndef HAVE_ATTRIBUTE_CONSTRUCTOR
92 #if defined(__llvm__) || defined(__GNUC__)
93 #define HAVE_ATTRIBUTE_CONSTRUCTOR
94 #endif
95#endif
96
97#ifdef HAVE_ATTRIBUTE_CONSTRUCTOR
98static void __attribute__((constructor)) libplist_initialize(void)
99{
100 thread_once(&init_once, internal_plist_init);
101}
86 102
103static void __attribute__((destructor)) libplist_deinitialize(void)
104{
105 thread_once(&deinit_once, internal_plist_deinit);
106}
107#elif defined(WIN32)
87BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved) 108BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved)
88{ 109{
89 switch (dwReason) { 110 switch (dwReason) {
@@ -98,22 +119,8 @@ BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved)
98 } 119 }
99 return 1; 120 return 1;
100} 121}
101
102#else 122#else
103 123#warning No compiler support for constructor/destructor attributes, some features might not be available.
104static pthread_once_t init_once = PTHREAD_ONCE_INIT;
105static pthread_once_t deinit_once = PTHREAD_ONCE_INIT;
106
107static void __attribute__((constructor)) libplist_initialize(void)
108{
109 pthread_once(&init_once, internal_plist_init);
110}
111
112static void __attribute__((destructor)) libplist_deinitialize(void)
113{
114 pthread_once(&deinit_once, internal_plist_deinit);
115}
116
117#endif 124#endif
118 125
119#ifndef HAVE_MEMMEM 126#ifndef HAVE_MEMMEM