bpo-31904: Adapt the _signal module to VxWorks RTOS by pxinwr · Pull Request #12304 · python/cpython (original) (raw)

This is the successive PR after #11968. In this PR we adapt the _signal module to VxWorks RTOS. The following is the siginfo_t type definition in VxWorks. No fields si_errno, si_pid, si_uid, si_status and si_band. So we set them to zero.
typedef struct _Siginfo { int si_signo; int si_code; union sigval si_value; } siginfo_t;
More and full support on modules for VxWorks will continuously be added by the coming PRs.
VxWorks is a product developed and owned by Wind River. For VxWorks introduction or more details, go to https://www.windriver.com/products/vxworks/
Wind River will have a dedicated engineering team to contribute to the support as maintainers.
We already have a working buildbot worker internally, but has not bound to master. We will check the process for the buildbot, then add it.

https://bugs.python.org/issue31904