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

bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507) #30507

Merged
merged 1 commit into from Jan 13, 2022

Commits on Jan 12, 2022

  1. bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility

    * add check for HAVE_CLOCK
    * use HAVE_PTHREAD_H to guard include of pthread.h
    * guard getpid() with HAVE_GETPID
    * guard clock() with HAVE_CLOCK
    * add checks for HAVE_UMASK and HAVE_CHMOD
    * guard include of setjmp.h
    * use signal emulation on WASI
    tiran committed Jan 12, 2022