Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[wasm] Guard RunLoop.subproj sources with __HAS_DISPATCH__ #4911

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions CoreFoundation/RunLoop.subproj/CFRunLoop.c
Expand Up @@ -8,6 +8,8 @@
Responsibility: Michael LeHew
*/

#if __HAS_DISPATCH__

#include <CoreFoundation/CFRunLoop.h>
#include <CoreFoundation/CFSet.h>
#include <CoreFoundation/CFBag.h>
Expand Down Expand Up @@ -4756,3 +4758,4 @@ void CFRunLoopTimerSetTolerance(CFRunLoopTimerRef rlt, CFTimeInterval tolerance)
#endif
}

#endif /* __HAS_DISPATCH__ */
3 changes: 3 additions & 0 deletions CoreFoundation/RunLoop.subproj/CFSocket.c
Expand Up @@ -8,6 +8,8 @@
Responsibility: Michael LeHew
*/

#if __HAS_DISPATCH__

#include <CoreFoundation/CFSocket.h>
#include <sys/types.h>
#include <math.h>
Expand Down Expand Up @@ -2639,3 +2641,4 @@ CF_EXPORT uint16_t CFSocketGetDefaultNameRegistryPortNumber(void) {
return __CFSocketDefaultNameRegistryPortNumber;
}

#endif /* __HAS_DISPATCH__ */