@@ -348,7 +348,7 @@ pub const F_LOCK: c_int = 1;
348348pub const F_TLOCK : c_int = 2 ;
349349pub const F_TEST : c_int = 3 ;
350350
351- // FIXME: relibc {
351+ // FIXME(redox) : relibc {
352352pub const RTLD_DEFAULT : * mut c_void = 0i64 as * mut c_void ;
353353// }
354354
@@ -504,7 +504,7 @@ pub const F_GETFD: c_int = 1;
504504pub const F_SETFD : c_int = 2 ;
505505pub const F_GETFL : c_int = 3 ;
506506pub const F_SETFL : c_int = 4 ;
507- // FIXME: relibc {
507+ // FIXME(redox) : relibc {
508508pub const F_DUPFD_CLOEXEC : c_int = crate :: F_DUPFD ;
509509// }
510510pub const FD_CLOEXEC : c_int = 0x0100_0000 ;
@@ -526,7 +526,7 @@ pub const O_DIRECTORY: c_int = 0x1000_0000;
526526pub const O_PATH : c_int = 0x2000_0000 ;
527527pub const O_SYMLINK : c_int = 0x4000_0000 ;
528528// 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
530530pub const O_NOFOLLOW : c_int = -0x8000_0000 ;
531531
532532// locale.h
@@ -567,7 +567,7 @@ pub const NI_NAMEREQD: c_int = 0x0008;
567567pub const NI_DGRAM : c_int = 0x0010 ;
568568
569569// netinet/in.h
570- // FIXME: relibc {
570+ // FIXME(redox) : relibc {
571571pub const IP_TTL : c_int = 2 ;
572572pub const IPV6_UNICAST_HOPS : c_int = 16 ;
573573pub const IPV6_MULTICAST_IF : c_int = 17 ;
@@ -592,7 +592,7 @@ pub const IPPROTO_MAX: c_int = 255;
592592
593593// netinet/tcp.h
594594pub const TCP_NODELAY : c_int = 1 ;
595- // FIXME: relibc {
595+ // FIXME(redox) : relibc {
596596pub const TCP_KEEPIDLE : c_int = 1 ;
597597// }
598598
@@ -723,7 +723,7 @@ pub const EXIT_SUCCESS: c_int = 0;
723723pub const EXIT_FAILURE : c_int = 1 ;
724724
725725// sys/ioctl.h
726- // FIXME: relibc {
726+ // FIXME(redox) : relibc {
727727pub const FIONREAD : c_ulong = 0x541B ;
728728pub const FIONBIO : c_ulong = 0x5421 ;
729729pub const FIOCLEX : c_ulong = 0x5451 ;
@@ -1283,7 +1283,7 @@ cfg_if! {
12831283 . field( "d_off" , & self . d_off)
12841284 . field( "d_reclen" , & self . d_reclen)
12851285 . field( "d_type" , & self . d_type)
1286- // FIXME: .field("d_name", &self.d_name)
1286+ // FIXME(debug) : .field("d_name", &self.d_name)
12871287 . finish( )
12881288 }
12891289 }
@@ -1315,7 +1315,7 @@ cfg_if! {
13151315 fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
13161316 f. debug_struct( "sockaddr_un" )
13171317 . field( "sun_family" , & self . sun_family)
1318- // FIXME: .field("sun_path", &self.sun_path)
1318+ // FIXME(debug) : .field("sun_path", &self.sun_path)
13191319 . finish( )
13201320 }
13211321 }
@@ -1346,7 +1346,7 @@ cfg_if! {
13461346 f. debug_struct( "sockaddr_storage" )
13471347 . field( "ss_family" , & self . ss_family)
13481348 . field( "__ss_align" , & self . __ss_align)
1349- // FIXME: .field("__ss_padding", &self.__ss_padding)
1349+ // FIXME(debug) : .field("__ss_padding", &self.__ss_padding)
13501350 . finish( )
13511351 }
13521352 }
@@ -1398,12 +1398,12 @@ cfg_if! {
13981398 impl fmt:: Debug for utsname {
13991399 fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
14001400 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)
14071407 . finish( )
14081408 }
14091409 }
0 commit comments