You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scenario: I'm currently developing my application in a docker container on MacOS. I wish to use kill and other related apis in Rust. Therefore I need to port those signal constants from C header to Rust. However I found that the value of SIGCHLD, which should be 17, is changed to 20.
The bindgen version is 0.65.1.
About the container (generate by Docker Desktop's dev container):
$ uname -a
Linux 64b26c15efbc 6.10.4-linuxkit #1 SMP Mon Aug 12 08:47:01 UTC 2024 aarch64 GNU/Linux
$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 11 (bullseye)
Release: 11
Codename: bullseye
Scenario: I'm currently developing my application in a docker container on MacOS. I wish to use
kill
and other related apis in Rust. Therefore I need to port those signal constants from C header to Rust. However I found that the value ofSIGCHLD
, which should be 17, is changed to 20.The bindgen version is
0.65.1
.About the container (generate by Docker Desktop's dev container):
Here's a mininal error reproduction (repo):
Performing
cargo run
gives the following output:The text was updated successfully, but these errors were encountered: