Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions libc-test/semver/espidf.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ SIGQUIT
SIGSEGV
SIGTERM
SOL_SOCKET
SOMAXCONN
cmsghdr
dirent
eventfd
Expand Down
2 changes: 2 additions & 0 deletions src/unix/newlib/espidf/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ pub const SIGHUP: c_int = 1;
pub const SIGQUIT: c_int = 3;
pub const NSIG: size_t = 32;

pub const SOMAXCONN: c_int = 128;

extern "C" {
pub fn pthread_create(
native: *mut crate::pthread_t,
Expand Down