File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
CoreFoundation/Base.subproj Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -783,6 +783,9 @@ typedef struct __CFTSDTable {
783
783
tsdDestructor destructors [CF_TSD_MAX_SLOTS ];
784
784
} __CFTSDTable ;
785
785
786
+ #if TARGET_OS_WIN32
787
+ __stdcall
788
+ #endif
786
789
static void __CFTSDFinalize (void * arg );
787
790
788
791
#if TARGET_OS_WIN32
@@ -844,6 +847,9 @@ static void *__CFTSDGetSpecific() {
844
847
845
848
_Atomic(bool ) __CFMainThreadHasExited = false;
846
849
850
+ #if TARGET_OS_WIN32
851
+ __stdcall
852
+ #endif
847
853
static void __CFTSDFinalize (void * arg ) {
848
854
#if TARGET_OS_WASI
849
855
__CFMainThreadHasExited = true;
@@ -1626,6 +1632,9 @@ typedef struct _CFThreadSpecificData {
1626
1632
} _CFThreadSpecificData ;
1627
1633
#endif
1628
1634
1635
+ #if TARGET_OS_WIN32
1636
+ __stdcall
1637
+ #endif
1629
1638
static void _CFThreadSpecificDestructor (void * ctx ) {
1630
1639
#if TARGET_OS_WIN32
1631
1640
_CFThreadSpecificData * data = (_CFThreadSpecificData * )ctx ;
You can’t perform that action at this time.
0 commit comments