summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2021-09-13 18:50:01 +0200
committerGravatar Nikias Bassen2021-09-13 18:50:01 +0200
commitd64a7a34166a470e6fa93a9f93e49c6ab23a7e62 (patch)
tree4bc591f7f5010ef3526cd24eb144c21e5f58d302 /src
parent46c4ea08fa1ab26c7c7b18b2e0eee76edf362be5 (diff)
downloadlibimobiledevice-d64a7a34166a470e6fa93a9f93e49c6ab23a7e62.tar.gz
libimobiledevice-d64a7a34166a470e6fa93a9f93e49c6ab23a7e62.tar.bz2
Check availability of constructor attribute and use it on Windows in favor of DllMain
Diffstat (limited to 'src')
-rw-r--r--src/idevice.c28
1 files changed, 18 insertions, 10 deletions
diff --git a/src/idevice.c b/src/idevice.c
index 4545bfa..6a03c5e 100644
--- a/src/idevice.c
+++ b/src/idevice.c
@@ -174,7 +174,23 @@ static void internal_idevice_deinit(void)
174static thread_once_t init_once = THREAD_ONCE_INIT; 174static thread_once_t init_once = THREAD_ONCE_INIT;
175static thread_once_t deinit_once = THREAD_ONCE_INIT; 175static thread_once_t deinit_once = THREAD_ONCE_INIT;
176 176
177#ifdef WIN32 177#ifndef HAVE_ATTRIBUTE_CONSTRUCTOR
178 #if defined(__llvm__) || defined(__GNUC__)
179 #define HAVE_ATTRIBUTE_CONSTRUCTOR
180 #endif
181#endif
182
183#ifdef HAVE_ATTRIBUTE_CONSTRUCTOR
184static void __attribute__((constructor)) libimobiledevice_initialize(void)
185{
186 thread_once(&init_once, internal_idevice_init);
187}
188
189static void __attribute__((destructor)) libimobiledevice_deinitialize(void)
190{
191 thread_once(&deinit_once, internal_idevice_deinit);
192}
193#elif defined(WIN32)
178BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved) 194BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved)
179{ 195{
180 switch (dwReason) { 196 switch (dwReason) {
@@ -190,15 +206,7 @@ BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved)
190 return 1; 206 return 1;
191} 207}
192#else 208#else
193static void __attribute__((constructor)) libimobiledevice_initialize(void) 209#warning No compiler support for constructor/destructor attributes, some features might not be available.
194{
195 thread_once(&init_once, internal_idevice_init);
196}
197
198static void __attribute__((destructor)) libimobiledevice_deinitialize(void)
199{
200 thread_once(&deinit_once, internal_idevice_deinit);
201}
202#endif 210#endif
203 211
204static idevice_event_cb_t event_cb = NULL; 212static idevice_event_cb_t event_cb = NULL;