This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients christian.heimes, erlendaasland, miss-islington
Date 2021-11-29.08:15:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1638173716.63.0.28412522013.issue45847@roundup.psfhosted.org>
In-reply-to
Content
GH-29768 broke builds on platforms without sem_open (e.g. wasm). GH-29833 fixes the issue.

emcc -Wsign-compare -g -O0 -Wall    -std=c99 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I../../Include/internal -IObjects -IInclude -IPython -I. -I../../Include    -DPy_BUILD_CORE_BUILTIN -I../../Modules/_multiprocessing -c ../../Modules/_multiprocessing/semaphore.c -o Modules/_multiprocessing/semaphore.o
../../Modules/_multiprocessing/semaphore.c:16:5: error: unknown type name 'SEM_HANDLE'
    SEM_HANDLE handle;
    ^
In file included from ../../Modules/_multiprocessing/semaphore.c:38:
../../Modules/_multiprocessing/clinic/semaphore.c.h:220:60: error: unknown type name 'SEM_HANDLE'
History
Date User Action Args
2021-11-29 08:15:16christian.heimessetrecipients: + christian.heimes, miss-islington, erlendaasland
2021-11-29 08:15:16christian.heimessetmessageid: <1638173716.63.0.28412522013.issue45847@roundup.psfhosted.org>
2021-11-29 08:15:16christian.heimeslinkissue45847 messages
2021-11-29 08:15:16christian.heimescreate