We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eba3aa8 commit 6778a43Copy full SHA for 6778a43
src/unix/newlib/espidf/mod.rs
@@ -89,6 +89,16 @@ pub const MSG_EOR: ::c_int = 0x08;
89
90
pub const PTHREAD_STACK_MIN: ::size_t = 768;
91
92
+pub const SIGABRT: ::size_t = 1;
93
+pub const SIGFPE: ::size_t = 1;
94
+pub const SIGILL: ::size_t = 1;
95
+pub const SIGINT: ::size_t = 1;
96
+pub const SIGSEGV: ::size_t = 1;
97
+pub const SIGTERM: ::size_t = 1;
98
+pub const SIGHUP: ::size_t = 1;
99
+pub const SIGQUIT: ::size_t = 1;
100
+pub const NSIG: ::size_t = 2;
101
+
102
extern "C" {
103
pub fn pthread_create(
104
native: *mut ::pthread_t,
0 commit comments