@@ -348,7 +348,7 @@ pub const F_LOCK: c_int = 1;
348
348
pub const F_TLOCK : c_int = 2 ;
349
349
pub const F_TEST : c_int = 3 ;
350
350
351
- // FIXME: relibc {
351
+ // FIXME(redox) : relibc {
352
352
pub const RTLD_DEFAULT : * mut c_void = 0i64 as * mut c_void ;
353
353
// }
354
354
@@ -504,7 +504,7 @@ pub const F_GETFD: c_int = 1;
504
504
pub const F_SETFD : c_int = 2 ;
505
505
pub const F_GETFL : c_int = 3 ;
506
506
pub const F_SETFL : c_int = 4 ;
507
- // FIXME: relibc {
507
+ // FIXME(redox) : relibc {
508
508
pub const F_DUPFD_CLOEXEC : c_int = crate :: F_DUPFD ;
509
509
// }
510
510
pub const FD_CLOEXEC : c_int = 0x0100_0000 ;
@@ -526,7 +526,7 @@ pub const O_DIRECTORY: c_int = 0x1000_0000;
526
526
pub const O_PATH : c_int = 0x2000_0000 ;
527
527
pub const O_SYMLINK : c_int = 0x4000_0000 ;
528
528
// Negative to allow it to be used as int
529
- // FIXME: Fix negative values missing from includes
529
+ // FIXME(redox) : Fix negative values missing from includes
530
530
pub const O_NOFOLLOW : c_int = -0x8000_0000 ;
531
531
532
532
// locale.h
@@ -567,7 +567,7 @@ pub const NI_NAMEREQD: c_int = 0x0008;
567
567
pub const NI_DGRAM : c_int = 0x0010 ;
568
568
569
569
// netinet/in.h
570
- // FIXME: relibc {
570
+ // FIXME(redox) : relibc {
571
571
pub const IP_TTL : c_int = 2 ;
572
572
pub const IPV6_UNICAST_HOPS : c_int = 16 ;
573
573
pub const IPV6_MULTICAST_IF : c_int = 17 ;
@@ -592,7 +592,7 @@ pub const IPPROTO_MAX: c_int = 255;
592
592
593
593
// netinet/tcp.h
594
594
pub const TCP_NODELAY : c_int = 1 ;
595
- // FIXME: relibc {
595
+ // FIXME(redox) : relibc {
596
596
pub const TCP_KEEPIDLE : c_int = 1 ;
597
597
// }
598
598
@@ -723,7 +723,7 @@ pub const EXIT_SUCCESS: c_int = 0;
723
723
pub const EXIT_FAILURE : c_int = 1 ;
724
724
725
725
// sys/ioctl.h
726
- // FIXME: relibc {
726
+ // FIXME(redox) : relibc {
727
727
pub const FIONREAD : c_ulong = 0x541B ;
728
728
pub const FIONBIO : c_ulong = 0x5421 ;
729
729
pub const FIOCLEX : c_ulong = 0x5451 ;
@@ -1283,7 +1283,7 @@ cfg_if! {
1283
1283
. field( "d_off" , & self . d_off)
1284
1284
. field( "d_reclen" , & self . d_reclen)
1285
1285
. field( "d_type" , & self . d_type)
1286
- // FIXME: .field("d_name", &self.d_name)
1286
+ // FIXME(debug) : .field("d_name", &self.d_name)
1287
1287
. finish( )
1288
1288
}
1289
1289
}
@@ -1315,7 +1315,7 @@ cfg_if! {
1315
1315
fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
1316
1316
f. debug_struct( "sockaddr_un" )
1317
1317
. field( "sun_family" , & self . sun_family)
1318
- // FIXME: .field("sun_path", &self.sun_path)
1318
+ // FIXME(debug) : .field("sun_path", &self.sun_path)
1319
1319
. finish( )
1320
1320
}
1321
1321
}
@@ -1346,7 +1346,7 @@ cfg_if! {
1346
1346
f. debug_struct( "sockaddr_storage" )
1347
1347
. field( "ss_family" , & self . ss_family)
1348
1348
. field( "__ss_align" , & self . __ss_align)
1349
- // FIXME: .field("__ss_padding", &self.__ss_padding)
1349
+ // FIXME(debug) : .field("__ss_padding", &self.__ss_padding)
1350
1350
. finish( )
1351
1351
}
1352
1352
}
@@ -1398,12 +1398,12 @@ cfg_if! {
1398
1398
impl fmt:: Debug for utsname {
1399
1399
fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
1400
1400
f. debug_struct( "utsname" )
1401
- // FIXME: .field("sysname", &self.sysname)
1402
- // FIXME: .field("nodename", &self.nodename)
1403
- // FIXME: .field("release", &self.release)
1404
- // FIXME: .field("version", &self.version)
1405
- // FIXME: .field("machine", &self.machine)
1406
- // FIXME: .field("domainname", &self.domainname)
1401
+ // FIXME(debug) : .field("sysname", &self.sysname)
1402
+ // FIXME(debug) : .field("nodename", &self.nodename)
1403
+ // FIXME(debug) : .field("release", &self.release)
1404
+ // FIXME(debug) : .field("version", &self.version)
1405
+ // FIXME(debug) : .field("machine", &self.machine)
1406
+ // FIXME(debug) : .field("domainname", &self.domainname)
1407
1407
. finish( )
1408
1408
}
1409
1409
}
0 commit comments