Skip to content

Commit 2914d6f

Browse files
chenx97JohnTitor
authored andcommitted
linux_like: add SIGEMT for mips* and sparc*
(backport #4730) (cherry picked from commit de7e184)
1 parent ff2ff25 commit 2914d6f

File tree

9 files changed

+9
-0
lines changed

9 files changed

+9
-0
lines changed

libc-test/semver/linux-mips.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ PTRACE_GETREGS
99
PTRACE_SETFPREGS
1010
PTRACE_SETFPXREGS
1111
PTRACE_SETREGS
12+
SIGEMT
1213
SO_PRIORITY
1314
SO_PROTOCOL
1415
SYS__sysctl

libc-test/semver/linux-sparc64.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ MAP_SYNC
2020
PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
2121
PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
2222
PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
23+
SIGEMT
2324
SYS__llseek
2425
SYS__newselect
2526
SYS__sysctl

src/unix/linux_like/linux/gnu/b32/mips/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -768,6 +768,7 @@ pub const SOCK_DGRAM: c_int = 1;
768768
pub const SA_SIGINFO: c_int = 0x00000008;
769769
pub const SA_NOCLDWAIT: c_int = 0x00010000;
770770

771+
pub const SIGEMT: c_int = 7;
771772
pub const SIGCHLD: c_int = 18;
772773
pub const SIGBUS: c_int = 10;
773774
pub const SIGTTIN: c_int = 26;

src/unix/linux_like/linux/gnu/b32/sparc/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@ pub const SOCK_DGRAM: c_int = 2;
316316
pub const SA_SIGINFO: c_int = 0x200;
317317
pub const SA_NOCLDWAIT: c_int = 0x100;
318318

319+
pub const SIGEMT: c_int = 7;
319320
pub const SIGTTIN: c_int = 21;
320321
pub const SIGTTOU: c_int = 22;
321322
pub const SIGXCPU: c_int = 24;

src/unix/linux_like/linux/gnu/b64/mips64/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -757,6 +757,7 @@ pub const SA_ONSTACK: c_int = 0x08000000;
757757
pub const SA_SIGINFO: c_int = 0x00000008;
758758
pub const SA_NOCLDWAIT: c_int = 0x00010000;
759759

760+
pub const SIGEMT: c_int = 7;
760761
pub const SIGCHLD: c_int = 18;
761762
pub const SIGBUS: c_int = 10;
762763
pub const SIGTTIN: c_int = 26;

src/unix/linux_like/linux/gnu/b64/sparc64/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@ pub const SA_ONSTACK: c_int = 1;
324324
pub const SA_SIGINFO: c_int = 0x200;
325325
pub const SA_NOCLDWAIT: c_int = 0x100;
326326

327+
pub const SIGEMT: c_int = 7;
327328
pub const SIGTTIN: c_int = 21;
328329
pub const SIGTTOU: c_int = 22;
329330
pub const SIGXCPU: c_int = 24;

src/unix/linux_like/linux/musl/b32/mips/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,7 @@ pub const SA_ONSTACK: c_int = 0x08000000;
345345
pub const SA_SIGINFO: c_int = 8;
346346
pub const SA_NOCLDWAIT: c_int = 0x10000;
347347

348+
pub const SIGEMT: c_int = 7;
348349
pub const SIGCHLD: c_int = 18;
349350
pub const SIGBUS: c_int = 10;
350351
pub const SIGTTIN: c_int = 26;

src/unix/linux_like/linux/musl/b64/mips64.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -591,6 +591,7 @@ pub const SA_ONSTACK: c_int = 0x08000000;
591591
pub const SA_SIGINFO: c_int = 0x00000008;
592592
pub const SA_NOCLDWAIT: c_int = 0x00010000;
593593

594+
pub const SIGEMT: c_int = 7;
594595
pub const SIGCHLD: c_int = 18;
595596
pub const SIGBUS: c_int = 10;
596597
pub const SIGTTIN: c_int = 26;

src/unix/linux_like/linux/uclibc/mips/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ pub const SA_ONSTACK: c_uint = 0x08000000;
163163
pub const SA_SIGINFO: c_uint = 0x00000008;
164164
pub const SA_NOCLDWAIT: c_int = 0x00010000;
165165

166+
pub const SIGEMT: c_int = 7;
166167
pub const SIGCHLD: c_int = 18;
167168
pub const SIGBUS: c_int = 10;
168169
pub const SIGTTIN: c_int = 26;

0 commit comments

Comments
 (0)