fix(pty): remove non-portable signal enums

Remove signal enum members which do not use portable numbers, and
therefore may be different on different operating systems.
This commit is contained in:
Leroy Hopson 2024-03-03 18:12:25 +13:00
parent b78bdf3136
commit 7f03761fb2
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA
3 changed files with 0 additions and 7 deletions

View file

@ -24,12 +24,9 @@ namespace godot
SIGNAL_SIGILL = 4,
SIGNAL_SIGTRAP = 5,
SIGNAL_SIGABRT = 6,
SIGNAL_SIGBUS = 7,
SIGNAL_SIGFPE = 8,
SIGNAL_SIGKILL = 9,
SIGNAL_SIGUSR1 = 10,
SIGNAL_SIGSEGV = 11,
SIGNAL_SIGUSR2 = 12,
SIGNAL_SIGPIPE = 13,
SIGNAL_SIGALRM = 14,
SIGNAL_SIGTERM = 15,