Issue45895
Created on 2021-11-24 21:50 by christian.heimes, last changed 2022-04-11 14:59 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg406964 - (view) | Author: Christian Heimes (christian.heimes) * ![]() |
Date: 2021-11-24 21:50 | |
posixmodule.c defines _Py_Sigset_Converter() only when feature macro HAVE_SIGSET_T is set. Several use of the function miss the feature macro check and fail on platforms without sigset_t (e.g. wasm). Modules/posixmodule.c:5939:14: error: implicit declaration of function '_Py_Sigset_Converter' is invalid in C99 [-Werror,-Wimplicit-function-declaration] Modules/posixmodule.c:5952:14: error: implicit declaration of function '_Py_Sigset_Converter' is invalid in C99 [-Werror,-Wimplicit-function-declaration] Modules/clinic/signalmodule.c.h:385:10: error: implicit declaration of function '_Py_Sigset_Converter' is invalid in C99 [-Werror,-Wimplicit-function-declaration] |
|||
| msg406977 - (view) | Author: Christian Heimes (christian.heimes) * ![]() |
Date: 2021-11-25 08:09 | |
The problem has been reported before in bpo-41498. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:59:52 | admin | set | github: 90053 |
| 2021-11-25 08:09:41 | christian.heimes | set | status: open -> closed superseder: Undefinied _Py_Sigset_Converter function when HAVE_SIGSET_T not set messages: + msg406977 resolution: duplicate |
| 2021-11-24 21:50:04 | christian.heimes | create | |
