File tree Expand file tree Collapse file tree 6 files changed +6
-1
lines changed Expand file tree Collapse file tree 6 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -548,6 +548,7 @@ pub const _SC_AIO_PRIO_DELTA_MAX: ::c_int = 44;
548
548
pub const _SC_DELAYTIMER_MAX: :: c_int = 45 ;
549
549
pub const _SC_MQ_OPEN_MAX: :: c_int = 46 ;
550
550
pub const _SC_PAGESIZE: :: c_int = 47 ;
551
+ pub const _SC_PAGE_SIZE: :: c_int = _SC_PAGESIZE;
551
552
pub const _SC_RTSIG_MAX: :: c_int = 48 ;
552
553
pub const _SC_SEM_NSEMS_MAX: :: c_int = 49 ;
553
554
pub const _SC_SEM_VALUE_MAX: :: c_int = 50 ;
Original file line number Diff line number Diff line change @@ -362,6 +362,7 @@ pub const _SC_2_UPE : ::c_int = 25;
362
362
pub const _SC_STREAM_MAX : :: c_int = 26 ;
363
363
pub const _SC_TZNAME_MAX : :: c_int = 27 ;
364
364
pub const _SC_PAGESIZE : :: c_int = 28 ;
365
+ pub const _SC_PAGE_SIZE: :: c_int = _SC_PAGESIZE;
365
366
pub const _SC_FSYNC : :: c_int = 29 ;
366
367
367
368
pub const KERN_PROC_ARGV : :: c_int = 1 ;
Original file line number Diff line number Diff line change @@ -196,6 +196,7 @@ pub const _SC_XOPEN_LEGACY: ::c_int = 36;
196
196
pub const _SC_ATEXIT_MAX: :: c_int = 37 ;
197
197
pub const _SC_IOV_MAX: :: c_int = 38 ;
198
198
pub const _SC_PAGESIZE: :: c_int = 39 ;
199
+ pub const _SC_PAGE_SIZE: :: c_int = 40 ;
199
200
pub const _SC_XOPEN_UNIX: :: c_int = 41 ;
200
201
pub const _SC_MQ_PRIO_MAX: :: c_int = 51 ;
201
202
pub const _SC_GETGR_R_SIZE_MAX: :: c_int = 71 ;
Original file line number Diff line number Diff line change @@ -220,6 +220,7 @@ pub const _SC_MQ_OPEN_MAX: ::c_int = 27;
220
220
pub const _SC_MQ_PRIO_MAX: :: c_int = 28 ;
221
221
pub const _SC_VERSION: :: c_int = 29 ;
222
222
pub const _SC_PAGESIZE: :: c_int = 30 ;
223
+ pub const _SC_PAGE_SIZE: :: c_int = _SC_PAGESIZE;
223
224
pub const _SC_RTSIG_MAX: :: c_int = 31 ;
224
225
pub const _SC_SEM_NSEMS_MAX: :: c_int = 32 ;
225
226
pub const _SC_SEM_VALUE_MAX: :: c_int = 33 ;
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ pub const O_RDWR: ::c_int = 2;
175
175
pub const O_TRUNC : :: c_int = 512 ;
176
176
pub const O_CLOEXEC : :: c_int = 0x80000 ;
177
177
178
- pub const SOCK_CLOEXEC : :: c_int = O_CLOEXEC ;
178
+ pub const SOCK_CLOEXEC : :: c_int = O_CLOEXEC ;
179
179
180
180
pub const S_IFIFO : :: mode_t = 4096 ;
181
181
pub const S_IFCHR : :: mode_t = 8192 ;
Original file line number Diff line number Diff line change @@ -626,6 +626,7 @@ pub const _SC_JOB_CONTROL: ::c_int = 6;
626
626
pub const _SC_SAVED_IDS: :: c_int = 7 ;
627
627
pub const _SC_VERSION: :: c_int = 8 ;
628
628
pub const _SC_PAGESIZE: :: c_int = 11 ;
629
+ pub const _SC_PAGE_SIZE: :: c_int = _SC_PAGESIZE;
629
630
pub const _SC_NPROCESSORS_ONLN: :: c_int = 15 ;
630
631
pub const _SC_STREAM_MAX: :: c_int = 16 ;
631
632
pub const _SC_TZNAME_MAX: :: c_int = 17 ;
You can’t perform that action at this time.
0 commit comments