@@ -91,7 +91,7 @@ pub type rlim_t = c_ulonglong;
9191pub type c_long = i64 ;
9292pub type c_ulong = u64 ;
9393
94- // FIXME: why are these uninhabited types? that seems... wrong?
94+ // FIXME(fuchsia) : why are these uninhabited types? that seems... wrong?
9595// Presumably these should be `()` or an `extern type` (when that stabilizes).
9696#[ cfg_attr( feature = "extra_traits" , derive( Debug ) ) ]
9797pub enum timezone { }
@@ -111,7 +111,7 @@ impl Clone for DIR {
111111}
112112
113113#[ cfg_attr( feature = "extra_traits" , derive( Debug ) ) ]
114- pub enum fpos64_t { } // FIXME: fill this out with a struct
114+ pub enum fpos64_t { } // FIXME(fuchsia) : fill this out with a struct
115115impl Copy for fpos64_t { }
116116impl Clone for fpos64_t {
117117 fn clone ( & self ) -> fpos64_t {
144144 pub tv_nsec: c_long,
145145 }
146146
147- // FIXME: the rlimit and rusage related functions and types don't exist
147+ // FIXME(fuchsia) : the rlimit and rusage related functions and types don't exist
148148 // within zircon. Are there reasons for keeping them around?
149149 pub struct rlimit {
150150 pub rlim_cur: rlim_t,
478478 pub ifa_flags: c_uint,
479479 pub ifa_addr: * mut crate :: sockaddr,
480480 pub ifa_netmask: * mut crate :: sockaddr,
481- pub ifa_ifu: * mut crate :: sockaddr, // FIXME This should be a union
481+ pub ifa_ifu: * mut crate :: sockaddr, // FIXME(union) This should be a union
482482 pub ifa_data: * mut c_void,
483483 }
484484
@@ -1097,7 +1097,7 @@ cfg_if! {
10971097 . field( "totalhigh" , & self . totalhigh)
10981098 . field( "freehigh" , & self . freehigh)
10991099 . field( "mem_unit" , & self . mem_unit)
1100- // FIXME: .field("__reserved", &self.__reserved)
1100+ // FIXME(debug) : .field("__reserved", &self.__reserved)
11011101 . finish( )
11021102 }
11031103 }
@@ -1135,7 +1135,7 @@ cfg_if! {
11351135 fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
11361136 f. debug_struct( "sockaddr_un" )
11371137 . field( "sun_family" , & self . sun_family)
1138- // FIXME: .field("sun_path", &self.sun_path)
1138+ // FIXME(debug) : .field("sun_path", &self.sun_path)
11391139 . finish( )
11401140 }
11411141 }
@@ -1163,7 +1163,7 @@ cfg_if! {
11631163 f. debug_struct( "sockaddr_storage" )
11641164 . field( "ss_family" , & self . ss_family)
11651165 . field( "__ss_align" , & self . __ss_align)
1166- // FIXME: .field("__ss_pad2", &self.__ss_pad2)
1166+ // FIXME(debug) : .field("__ss_pad2", &self.__ss_pad2)
11671167 . finish( )
11681168 }
11691169 }
@@ -1207,11 +1207,11 @@ cfg_if! {
12071207 impl fmt:: Debug for utsname {
12081208 fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
12091209 f. debug_struct( "utsname" )
1210- // FIXME: .field("sysname", &self.sysname)
1211- // FIXME: .field("nodename", &self.nodename)
1212- // FIXME: .field("release", &self.release)
1213- // FIXME: .field("version", &self.version)
1214- // FIXME: .field("machine", &self.machine)
1210+ // FIXME(debug) : .field("sysname", &self.sysname)
1211+ // FIXME(debug) : .field("nodename", &self.nodename)
1212+ // FIXME(debug) : .field("release", &self.release)
1213+ // FIXME(debug) : .field("version", &self.version)
1214+ // FIXME(debug) : .field("machine", &self.machine)
12151215 . finish( )
12161216 }
12171217 }
@@ -1246,7 +1246,7 @@ cfg_if! {
12461246 . field( "d_off" , & self . d_off)
12471247 . field( "d_reclen" , & self . d_reclen)
12481248 . field( "d_type" , & self . d_type)
1249- // FIXME: .field("d_name", &self.d_name)
1249+ // FIXME(debug) : .field("d_name", &self.d_name)
12501250 . finish( )
12511251 }
12521252 }
@@ -1281,7 +1281,7 @@ cfg_if! {
12811281 . field( "d_off" , & self . d_off)
12821282 . field( "d_reclen" , & self . d_reclen)
12831283 . field( "d_type" , & self . d_type)
1284- // FIXME: .field("d_name", &self.d_name)
1284+ // FIXME(debug) : .field("d_name", &self.d_name)
12851285 . finish( )
12861286 }
12871287 }
@@ -1390,7 +1390,7 @@ cfg_if! {
13901390 impl fmt:: Debug for pthread_cond_t {
13911391 fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
13921392 f. debug_struct( "pthread_cond_t" )
1393- // FIXME: .field("size", &self.size)
1393+ // FIXME(debug) : .field("size", &self.size)
13941394 . finish( )
13951395 }
13961396 }
@@ -1409,7 +1409,7 @@ cfg_if! {
14091409 impl fmt:: Debug for pthread_mutex_t {
14101410 fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
14111411 f. debug_struct( "pthread_mutex_t" )
1412- // FIXME: .field("size", &self.size)
1412+ // FIXME(debug) : .field("size", &self.size)
14131413 . finish( )
14141414 }
14151415 }
@@ -1428,7 +1428,7 @@ cfg_if! {
14281428 impl fmt:: Debug for pthread_rwlock_t {
14291429 fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
14301430 f. debug_struct( "pthread_rwlock_t" )
1431- // FIXME: .field("size", &self.size)
1431+ // FIXME(debug) : .field("size", &self.size)
14321432 . finish( )
14331433 }
14341434 }
@@ -3562,7 +3562,7 @@ impl Clone for FILE {
35623562 }
35633563}
35643564#[ cfg_attr( feature = "extra_traits" , derive( Debug ) ) ]
3565- pub enum fpos_t { } // FIXME: fill this out with a struct
3565+ pub enum fpos_t { } // FIXME(fuchsia) : fill this out with a struct
35663566impl Copy for fpos_t { }
35673567impl Clone for fpos_t {
35683568 fn clone ( & self ) -> fpos_t {
0 commit comments