mirror of
https://github.com/containers/ansible-podman-collections.git
synced 2026-02-04 07:11:49 +00:00
Hardcode RT signal numbers (#338)
Looking up SIGRTMIN/SIGRTMAX isn't portable. Hardcode the Linux signal number instead. Fixes issue #337.
This commit is contained in:
parent
e6d2e86e35
commit
f3e95d0d3f
1 changed files with 2 additions and 2 deletions
|
|
@ -123,8 +123,8 @@ _signal_map = {
|
|||
"PROF": 27,
|
||||
"PWR": 30,
|
||||
"QUIT": 3,
|
||||
"RTMAX": int(signal.SIGRTMAX),
|
||||
"RTMIN": int(signal.SIGRTMIN),
|
||||
"RTMAX": 64,
|
||||
"RTMIN": 34,
|
||||
"SEGV": 11,
|
||||
"STKFLT": 16,
|
||||
"STOP": 19,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue