File tree Expand file tree Collapse file tree 7 files changed +1
-7
lines changed
src/unix/linux_like/linux/musl Expand file tree Collapse file tree 7 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -324,7 +324,6 @@ pub const MAP_SYNC: ::c_int = 0x080000;
324324
325325pub const SOCK_STREAM : :: c_int = 1 ;
326326pub const SOCK_DGRAM : :: c_int = 2 ;
327- pub const SOCK_SEQPACKET : :: c_int = 5 ;
328327
329328pub const EDEADLK : :: c_int = 35 ;
330329pub const ENAMETOOLONG : :: c_int = 36 ;
Original file line number Diff line number Diff line change @@ -292,7 +292,6 @@ pub const SIG_SETMASK: ::c_int = 2; // FIXME check these
292292pub const SIG_BLOCK : :: c_int = 0x000000 ;
293293pub const SIG_UNBLOCK : :: c_int = 0x01 ;
294294pub const SOCK_DGRAM : :: c_int = 2 ;
295- pub const SOCK_SEQPACKET : :: c_int = 5 ;
296295pub const SOCK_STREAM : :: c_int = 1 ;
297296pub const SOL_CAIF : :: c_int = 278 ;
298297pub const SOL_IUCV : :: c_int = 277 ;
Original file line number Diff line number Diff line change @@ -349,7 +349,6 @@ pub const ERFKILL: ::c_int = 167;
349349
350350pub const SOCK_STREAM : :: c_int = 2 ;
351351pub const SOCK_DGRAM : :: c_int = 1 ;
352- pub const SOCK_SEQPACKET : :: c_int = 5 ;
353352
354353pub const SA_ONSTACK : :: c_int = 0x08000000 ;
355354pub const SA_SIGINFO : :: c_int = 8 ;
Original file line number Diff line number Diff line change @@ -260,7 +260,6 @@ pub const PTRACE_SYSEMU_SINGLESTEP: ::c_int = 0x1e;
260260
261261pub const SOCK_STREAM : :: c_int = 1 ;
262262pub const SOCK_DGRAM : :: c_int = 2 ;
263- pub const SOCK_SEQPACKET : :: c_int = 5 ;
264263
265264pub const EDEADLK : :: c_int = 35 ;
266265pub const ENAMETOOLONG : :: c_int = 36 ;
Original file line number Diff line number Diff line change @@ -313,7 +313,6 @@ pub const MAP_SYNC: ::c_int = 0x080000;
313313
314314pub const SOCK_STREAM : :: c_int = 1 ;
315315pub const SOCK_DGRAM : :: c_int = 2 ;
316- pub const SOCK_SEQPACKET : :: c_int = 5 ;
317316
318317pub const EDEADLK : :: c_int = 35 ;
319318pub const ENAMETOOLONG : :: c_int = 36 ;
Original file line number Diff line number Diff line change @@ -134,8 +134,6 @@ pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 56;
134134pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 40 ;
135135pub const __SIZEOF_PTHREAD_BARRIER_T: usize = 32 ;
136136
137- pub const SOCK_SEQPACKET : :: c_int = 5 ;
138-
139137extern "C" {
140138 pub fn getrandom ( buf : * mut :: c_void , buflen : :: size_t , flags : :: c_uint ) -> :: ssize_t ;
141139}
Original file line number Diff line number Diff line change @@ -545,6 +545,7 @@ pub const POSIX_MADV_DONTNEED: ::c_int = 4;
545545
546546pub const MAP_ANONYMOUS : :: c_int = MAP_ANON ;
547547
548+ pub const SOCK_SEQPACKET : :: c_int = 5 ;
548549pub const SOCK_DCCP : :: c_int = 6 ;
549550pub const SOCK_NONBLOCK : :: c_int = O_NONBLOCK ;
550551pub const SOCK_PACKET : :: c_int = 10 ;
You can’t perform that action at this time.
0 commit comments