mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Windows: Fix mythread_once() macro with Vista threads.
Don't call InitOnceComplete() if initialization was already done. So far mythread_once() has been needed only when building with --enable-small. windows/build.bash does this together with --disable-threads so the Vista-specific mythread_once() is never needed by those builds. VS project files or CMake-builds don't support HAVE_SMALL builds at all.
This commit is contained in:
parent
1c8cbb5be3
commit
6930f14733
1 changed files with 4 additions and 3 deletions
|
@ -370,10 +370,11 @@ typedef struct {
|
||||||
BOOL pending_; \
|
BOOL pending_; \
|
||||||
if (!InitOnceBeginInitialize(&once_, 0, &pending_, NULL)) \
|
if (!InitOnceBeginInitialize(&once_, 0, &pending_, NULL)) \
|
||||||
abort(); \
|
abort(); \
|
||||||
if (pending_) \
|
if (pending_) { \
|
||||||
func(); \
|
func(); \
|
||||||
if (!InitOnceComplete(&once, 0, NULL)) \
|
if (!InitOnceComplete(&once, 0, NULL)) \
|
||||||
abort(); \
|
abort(); \
|
||||||
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue