File tree 29 files changed +29
-0
lines changed
29 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -1375,6 +1375,7 @@ MCAST_MSFILTER
1375
1375
MCAST_UNBLOCK_SOURCE
1376
1376
MCL_CURRENT
1377
1377
MCL_FUTURE
1378
+ MCL_ONFAULT
1378
1379
MEMBARRIER_CMD_GLOBAL
1379
1380
MEMBARRIER_CMD_GLOBAL_EXPEDITED
1380
1381
MEMBARRIER_CMD_QUERY
Original file line number Diff line number Diff line change @@ -1707,6 +1707,7 @@ pub const REG_BACKR: ::c_int = 1024;
1707
1707
1708
1708
pub const MCL_CURRENT : :: c_int = 0x0001 ;
1709
1709
pub const MCL_FUTURE : :: c_int = 0x0002 ;
1710
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
1710
1711
1711
1712
pub const CBAUD : :: tcflag_t = 0o0010017 ;
1712
1713
pub const TAB1 : :: tcflag_t = 0x00000800 ;
Original file line number Diff line number Diff line change @@ -341,6 +341,7 @@ pub const SOCK_DGRAM: ::c_int = 2;
341
341
342
342
pub const MCL_CURRENT : :: c_int = 0x0001 ;
343
343
pub const MCL_FUTURE : :: c_int = 0x0002 ;
344
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
344
345
345
346
pub const POLLWRNORM : :: c_short = 0x100 ;
346
347
pub const POLLWRBAND : :: c_short = 0x200 ;
Original file line number Diff line number Diff line change @@ -290,6 +290,7 @@ pub const SOCK_DGRAM: ::c_int = 2;
290
290
291
291
pub const MCL_CURRENT : :: c_int = 0x0001 ;
292
292
pub const MCL_FUTURE : :: c_int = 0x0002 ;
293
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
293
294
294
295
pub const POLLWRNORM : :: c_short = 0x100 ;
295
296
pub const POLLWRBAND : :: c_short = 0x200 ;
Original file line number Diff line number Diff line change @@ -293,6 +293,7 @@ pub const PTRACE_SYSEMU_SINGLESTEP: ::c_uint = 32;
293
293
294
294
pub const MCL_CURRENT : :: c_int = 0x0001 ;
295
295
pub const MCL_FUTURE : :: c_int = 0x0002 ;
296
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
296
297
297
298
pub const POLLWRNORM : :: c_short = 0x100 ;
298
299
pub const POLLWRBAND : :: c_short = 0x200 ;
Original file line number Diff line number Diff line change @@ -719,6 +719,7 @@ pub const RTLD_NOLOAD: ::c_int = 0x8;
719
719
720
720
pub const MCL_CURRENT : :: c_int = 0x0001 ;
721
721
pub const MCL_FUTURE : :: c_int = 0x0002 ;
722
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
722
723
723
724
pub const SIGSTKSZ : :: size_t = 8192 ;
724
725
pub const MINSIGSTKSZ : :: size_t = 2048 ;
Original file line number Diff line number Diff line change @@ -293,6 +293,7 @@ pub const SOCK_DGRAM: ::c_int = 2;
293
293
294
294
pub const MCL_CURRENT : :: c_int = 0x2000 ;
295
295
pub const MCL_FUTURE : :: c_int = 0x4000 ;
296
+ pub const MCL_ONFAULT : :: c_int = 0x8000 ;
296
297
297
298
pub const POLLWRNORM : :: c_short = 0x100 ;
298
299
pub const POLLWRBAND : :: c_short = 0x200 ;
Original file line number Diff line number Diff line change @@ -393,6 +393,7 @@ pub const EISNAM: ::c_int = 120;
393
393
pub const EREMOTEIO : :: c_int = 121 ;
394
394
pub const MCL_CURRENT : :: c_int = 1 ;
395
395
pub const MCL_FUTURE : :: c_int = 2 ;
396
+ pub const MCL_ONFAULT : :: c_int = 4 ;
396
397
pub const SIGSTKSZ : :: size_t = 8192 ;
397
398
pub const MINSIGSTKSZ : :: size_t = 2048 ;
398
399
pub const CBAUD : :: tcflag_t = 4111 ;
Original file line number Diff line number Diff line change @@ -363,6 +363,7 @@ pub const EREMOTEIO: ::c_int = 121;
363
363
364
364
pub const MCL_CURRENT : :: c_int = 0x2000 ;
365
365
pub const MCL_FUTURE : :: c_int = 0x4000 ;
366
+ pub const MCL_ONFAULT : :: c_int = 0x8000 ;
366
367
367
368
pub const SIGSTKSZ : :: size_t = 16384 ;
368
369
pub const MINSIGSTKSZ : :: size_t = 4096 ;
Original file line number Diff line number Diff line change @@ -507,6 +507,7 @@ pub const PTRACE_SYSEMU_SINGLESTEP: ::c_uint = 32;
507
507
508
508
pub const MCL_CURRENT : :: c_int = 0x0001 ;
509
509
pub const MCL_FUTURE : :: c_int = 0x0002 ;
510
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
510
511
511
512
pub const POLLWRNORM : :: c_short = 0x100 ;
512
513
pub const POLLWRBAND : :: c_short = 0x200 ;
Original file line number Diff line number Diff line change @@ -423,6 +423,7 @@ pub const EDEADLOCK: ::c_int = 35;
423
423
424
424
pub const MCL_CURRENT : :: c_int = 0x0001 ;
425
425
pub const MCL_FUTURE : :: c_int = 0x0002 ;
426
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
426
427
427
428
pub const SIGSTKSZ : :: size_t = 16384 ;
428
429
pub const MINSIGSTKSZ : :: size_t = 5120 ;
Original file line number Diff line number Diff line change @@ -823,6 +823,7 @@ pub const RTLD_NOLOAD: ::c_int = 0x8;
823
823
824
824
pub const MCL_CURRENT : :: c_int = 0x0001 ;
825
825
pub const MCL_FUTURE : :: c_int = 0x0002 ;
826
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
826
827
827
828
pub const SIGSTKSZ : :: size_t = 8192 ;
828
829
pub const MINSIGSTKSZ : :: size_t = 2048 ;
Original file line number Diff line number Diff line change @@ -473,6 +473,7 @@ pub const EREMOTEIO: ::c_int = 121;
473
473
474
474
pub const MCL_CURRENT : :: c_int = 0x2000 ;
475
475
pub const MCL_FUTURE : :: c_int = 0x4000 ;
476
+ pub const MCL_ONFAULT : :: c_int = 0x8000 ;
476
477
477
478
pub const SIGSTKSZ : :: size_t = 0x4000 ;
478
479
pub const MINSIGSTKSZ : :: size_t = 4096 ;
Original file line number Diff line number Diff line change @@ -432,6 +432,7 @@ pub const PTRACE_GETREGS: ::c_uint = 12;
432
432
pub const PTRACE_SETREGS : :: c_uint = 13 ;
433
433
pub const MCL_CURRENT : :: c_int = 1 ;
434
434
pub const MCL_FUTURE : :: c_int = 2 ;
435
+ pub const MCL_ONFAULT : :: c_int = 4 ;
435
436
pub const SIGSTKSZ : :: size_t = 8192 ;
436
437
pub const MINSIGSTKSZ : :: size_t = 2048 ;
437
438
pub const CBAUD : :: tcflag_t = 4111 ;
Original file line number Diff line number Diff line change @@ -481,6 +481,7 @@ pub const PTRACE_DETACH: ::c_uint = 17;
481
481
482
482
pub const MCL_CURRENT : :: c_int = 0x0001 ;
483
483
pub const MCL_FUTURE : :: c_int = 0x0002 ;
484
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
484
485
485
486
pub const EFD_NONBLOCK : :: c_int = 0x800 ;
486
487
Original file line number Diff line number Diff line change @@ -444,6 +444,7 @@ pub const EREMOTEIO: ::c_int = 121;
444
444
445
445
pub const MCL_CURRENT : :: c_int = 0x2000 ;
446
446
pub const MCL_FUTURE : :: c_int = 0x4000 ;
447
+ pub const MCL_ONFAULT : :: c_int = 0x8000 ;
447
448
448
449
pub const SIGSTKSZ : :: size_t = 16384 ;
449
450
pub const MINSIGSTKSZ : :: size_t = 4096 ;
Original file line number Diff line number Diff line change @@ -651,6 +651,7 @@ pub const PR_SPEC_INDIRECT_BRANCH: ::c_int = 1;
651
651
652
652
pub const MCL_CURRENT : :: c_int = 0x0001 ;
653
653
pub const MCL_FUTURE : :: c_int = 0x0002 ;
654
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
654
655
655
656
pub const SIGSTKSZ : :: size_t = 8192 ;
656
657
pub const MINSIGSTKSZ : :: size_t = 2048 ;
Original file line number Diff line number Diff line change @@ -235,6 +235,7 @@ pub const O_LARGEFILE: ::c_int = 0o400000;
235
235
pub const MADV_SOFT_OFFLINE : :: c_int = 101 ;
236
236
pub const MCL_CURRENT : :: c_int = 0x0001 ;
237
237
pub const MCL_FUTURE : :: c_int = 0x0002 ;
238
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
238
239
pub const CBAUD : :: tcflag_t = 0o0010017 ;
239
240
pub const TAB1 : :: c_int = 0x00000800 ;
240
241
pub const TAB2 : :: c_int = 0x00001000 ;
Original file line number Diff line number Diff line change @@ -174,6 +174,7 @@ pub const O_LARGEFILE: ::c_int = 0x2000;
174
174
175
175
pub const MCL_CURRENT : :: c_int = 0x0001 ;
176
176
pub const MCL_FUTURE : :: c_int = 0x0002 ;
177
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
177
178
pub const CBAUD : :: tcflag_t = 0o0010017 ;
178
179
pub const TAB1 : :: c_int = 0x00000800 ;
179
180
pub const TAB2 : :: c_int = 0x00001000 ;
Original file line number Diff line number Diff line change @@ -167,6 +167,7 @@ pub const O_LARGEFILE: ::c_int = 0x10000;
167
167
168
168
pub const MCL_CURRENT : :: c_int = 0x2000 ;
169
169
pub const MCL_FUTURE : :: c_int = 0x4000 ;
170
+ pub const MCL_ONFAULT : :: c_int = 0x8000 ;
170
171
pub const CBAUD : :: tcflag_t = 0o0000377 ;
171
172
pub const TAB1 : :: c_int = 0x00000400 ;
172
173
pub const TAB2 : :: c_int = 0x00000800 ;
Original file line number Diff line number Diff line change @@ -376,6 +376,7 @@ pub const FIONCLEX: ::c_int = 21584;
376
376
pub const FIONBIO : :: c_int = 21537 ;
377
377
pub const MCL_CURRENT : :: c_int = 1 ;
378
378
pub const MCL_FUTURE : :: c_int = 2 ;
379
+ pub const MCL_ONFAULT : :: c_int = 4 ;
379
380
pub const SIGSTKSZ : :: size_t = 8192 ;
380
381
pub const MINSIGSTKSZ : :: size_t = 2048 ;
381
382
pub const CBAUD : :: tcflag_t = 4111 ;
Original file line number Diff line number Diff line change @@ -224,6 +224,7 @@ pub const O_LARGEFILE: ::c_int = 0o0100000;
224
224
pub const MADV_SOFT_OFFLINE : :: c_int = 101 ;
225
225
pub const MCL_CURRENT : :: c_int = 0x0001 ;
226
226
pub const MCL_FUTURE : :: c_int = 0x0002 ;
227
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
227
228
pub const CBAUD : :: tcflag_t = 0o0010017 ;
228
229
pub const TAB1 : :: c_int = 0x00000800 ;
229
230
pub const TAB2 : :: c_int = 0x00001000 ;
Original file line number Diff line number Diff line change @@ -567,6 +567,7 @@ pub const SYS_set_mempolicy_home_node: ::c_long = 450;
567
567
568
568
pub const MCL_CURRENT : :: c_int = 0x0001 ;
569
569
pub const MCL_FUTURE : :: c_int = 0x0002 ;
570
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
570
571
pub const CBAUD : :: tcflag_t = 0o0010017 ;
571
572
pub const TAB1 : :: c_int = 0x00000800 ;
572
573
pub const TAB2 : :: c_int = 0x00001000 ;
Original file line number Diff line number Diff line change @@ -618,6 +618,7 @@ pub const F_OFD_SETLKW: ::c_int = 38;
618
618
619
619
pub const MCL_CURRENT : :: c_int = 0x0001 ;
620
620
pub const MCL_FUTURE : :: c_int = 0x0002 ;
621
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
621
622
622
623
pub const CBAUD : :: tcflag_t = 0o0010017 ;
623
624
pub const TAB1 : :: tcflag_t = 0x00000800 ;
Original file line number Diff line number Diff line change @@ -626,6 +626,7 @@ pub const FLUSHO: ::tcflag_t = 0x00800000;
626
626
627
627
pub const MCL_CURRENT : :: c_int = 0x2000 ;
628
628
pub const MCL_FUTURE : :: c_int = 0x4000 ;
629
+ pub const MCL_ONFAULT : :: c_int = 0x8000 ;
629
630
pub const CBAUD : :: tcflag_t = 0xff ;
630
631
pub const TAB1 : :: c_int = 0x400 ;
631
632
pub const TAB2 : :: c_int = 0x800 ;
Original file line number Diff line number Diff line change @@ -630,6 +630,7 @@ pub const MAP_SYNC: ::c_int = 0x080000;
630
630
631
631
pub const MCL_CURRENT : :: c_int = 0x0001 ;
632
632
pub const MCL_FUTURE : :: c_int = 0x0002 ;
633
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
633
634
pub const CBAUD : :: tcflag_t = 0o0010017 ;
634
635
pub const TAB1 : :: c_int = 0x00000800 ;
635
636
pub const TAB2 : :: c_int = 0x00001000 ;
Original file line number Diff line number Diff line change @@ -290,6 +290,7 @@ pub const EXTPROC: ::tcflag_t = 0x00010000;
290
290
291
291
pub const MCL_CURRENT : :: c_int = 0x0001 ;
292
292
pub const MCL_FUTURE : :: c_int = 0x0002 ;
293
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
293
294
294
295
pub const F_GETLK : :: c_int = 5 ;
295
296
pub const F_GETOWN : :: c_int = 9 ;
Original file line number Diff line number Diff line change @@ -831,6 +831,7 @@ pub const MAP_SYNC: ::c_int = 0x080000;
831
831
832
832
pub const MCL_CURRENT : :: c_int = 0x0001 ;
833
833
pub const MCL_FUTURE : :: c_int = 0x0002 ;
834
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
834
835
pub const CBAUD : :: tcflag_t = 0o0010017 ;
835
836
pub const TAB1 : :: c_int = 0x00000800 ;
836
837
pub const TAB2 : :: c_int = 0x00001000 ;
Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ impl siginfo_t {
109
109
110
110
pub const MCL_CURRENT : :: c_int = 0x0001 ;
111
111
pub const MCL_FUTURE : :: c_int = 0x0002 ;
112
+ pub const MCL_ONFAULT : :: c_int = 0x0004 ;
112
113
113
114
pub const SIGEV_THREAD_ID : :: c_int = 4 ;
114
115
You can’t perform that action at this time.
0 commit comments