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 @@ -325,7 +325,6 @@ pub const MAP_SYNC: ::c_int = 0x080000;
325
325
326
326
pub const SOCK_STREAM : :: c_int = 1 ;
327
327
pub const SOCK_DGRAM : :: c_int = 2 ;
328
- pub const SOCK_SEQPACKET : :: c_int = 5 ;
329
328
330
329
pub const EDEADLK : :: c_int = 35 ;
331
330
pub const ENAMETOOLONG : :: c_int = 36 ;
Original file line number Diff line number Diff line change @@ -291,7 +291,6 @@ pub const SIG_SETMASK: ::c_int = 2; // FIXME check these
291
291
pub const SIG_BLOCK : :: c_int = 0x000000 ;
292
292
pub const SIG_UNBLOCK : :: c_int = 0x01 ;
293
293
pub const SOCK_DGRAM : :: c_int = 2 ;
294
- pub const SOCK_SEQPACKET : :: c_int = 5 ;
295
294
pub const SOCK_STREAM : :: c_int = 1 ;
296
295
pub const SOL_CAIF : :: c_int = 278 ;
297
296
pub const SOL_IUCV : :: c_int = 277 ;
Original file line number Diff line number Diff line change @@ -350,7 +350,6 @@ pub const ERFKILL: ::c_int = 167;
350
350
351
351
pub const SOCK_STREAM : :: c_int = 2 ;
352
352
pub const SOCK_DGRAM : :: c_int = 1 ;
353
- pub const SOCK_SEQPACKET : :: c_int = 5 ;
354
353
355
354
pub const SA_ONSTACK : :: c_int = 0x08000000 ;
356
355
pub const SA_SIGINFO : :: c_int = 8 ;
Original file line number Diff line number Diff line change @@ -261,7 +261,6 @@ pub const PTRACE_SYSEMU_SINGLESTEP: ::c_int = 0x1e;
261
261
262
262
pub const SOCK_STREAM : :: c_int = 1 ;
263
263
pub const SOCK_DGRAM : :: c_int = 2 ;
264
- pub const SOCK_SEQPACKET : :: c_int = 5 ;
265
264
266
265
pub const EDEADLK : :: c_int = 35 ;
267
266
pub const ENAMETOOLONG : :: c_int = 36 ;
Original file line number Diff line number Diff line change @@ -314,7 +314,6 @@ pub const MAP_SYNC: ::c_int = 0x080000;
314
314
315
315
pub const SOCK_STREAM : :: c_int = 1 ;
316
316
pub const SOCK_DGRAM : :: c_int = 2 ;
317
- pub const SOCK_SEQPACKET : :: c_int = 5 ;
318
317
319
318
pub const EDEADLK : :: c_int = 35 ;
320
319
pub 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;
134
134
pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 40 ;
135
135
pub const __SIZEOF_PTHREAD_BARRIER_T: usize = 32 ;
136
136
137
- pub const SOCK_SEQPACKET : :: c_int = 5 ;
138
-
139
137
extern "C" {
140
138
pub fn getrandom ( buf : * mut :: c_void , buflen : :: size_t , flags : :: c_uint ) -> :: ssize_t ;
141
139
}
Original file line number Diff line number Diff line change @@ -545,6 +545,7 @@ pub const POSIX_MADV_DONTNEED: ::c_int = 4;
545
545
546
546
pub const MAP_ANONYMOUS : :: c_int = MAP_ANON ;
547
547
548
+ pub const SOCK_SEQPACKET : :: c_int = 5 ;
548
549
pub const SOCK_DCCP : :: c_int = 6 ;
549
550
pub const SOCK_NONBLOCK : :: c_int = O_NONBLOCK ;
550
551
pub const SOCK_PACKET : :: c_int = 10 ;
You can’t perform that action at this time.
0 commit comments