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.
2 parents 7080c7c + 4cab023 commit d69595eCopy full SHA for d69595e
src/unix/newlib/espidf/mod.rs
@@ -100,6 +100,16 @@ pub const SIGHUP: c_int = 1;
100
pub const SIGQUIT: c_int = 3;
101
pub const NSIG: size_t = 32;
102
103
+pub const SIGABRT: ::size_t = 1;
104
+pub const SIGFPE: ::size_t = 1;
105
+pub const SIGILL: ::size_t = 1;
106
+pub const SIGINT: ::size_t = 1;
107
+pub const SIGSEGV: ::size_t = 1;
108
+pub const SIGTERM: ::size_t = 1;
109
+pub const SIGHUP: ::size_t = 1;
110
+pub const SIGQUIT: ::size_t = 1;
111
+pub const NSIG: ::size_t = 2;
112
+
113
extern "C" {
114
pub fn pthread_create(
115
native: *mut crate::pthread_t,
0 commit comments