summaryrefslogtreecommitdiff
path: root/src/unix/redox/mod.rs
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-02-29 13:36:27 +0900
committerYuki Okushi <huyuumi.dev@gmail.com>2020-02-29 13:36:27 +0900
commit483bb8171fc903b3a27a87b7fdc93797a9809e3f (patch)
tree4842d6521e47b386b322194e298ddade674ccea3 /src/unix/redox/mod.rs
parent92ae2be5115607ed677679af9504f9d5da03c653 (diff)
downloadrust-libc-483bb8171fc903b3a27a87b7fdc93797a9809e3f.tar.gz
Replace TODO with FIXME to make grep easy
Diffstat (limited to 'src/unix/redox/mod.rs')
-rw-r--r--src/unix/redox/mod.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/unix/redox/mod.rs b/src/unix/redox/mod.rs
index 4ea52e3798..7f66f1b41e 100644
--- a/src/unix/redox/mod.rs
+++ b/src/unix/redox/mod.rs
@@ -258,7 +258,7 @@ pub const F_GETLK: ::c_int = 5;
pub const F_SETLK: ::c_int = 6;
pub const F_SETLKW: ::c_int = 7;
-// TODO: relibc {
+// FIXME: relibc {
pub const RTLD_DEFAULT: *mut ::c_void = 0i64 as *mut ::c_void;
// }
@@ -413,7 +413,7 @@ pub const F_GETFD: ::c_int = 1;
pub const F_SETFD: ::c_int = 2;
pub const F_GETFL: ::c_int = 3;
pub const F_SETFL: ::c_int = 4;
-// TODO: relibc {
+// FIXME: relibc {
pub const F_DUPFD_CLOEXEC: ::c_int = ::F_DUPFD;
// }
pub const FD_CLOEXEC: ::c_int = 0x0100_0000;
@@ -435,14 +435,14 @@ pub const O_DIRECTORY: ::c_int = 0x1000_0000;
pub const O_PATH: ::c_int = 0x2000_0000;
pub const O_SYMLINK: ::c_int = 0x4000_0000;
// Negative to allow it to be used as int
-// TODO: Fix negative values missing from includes
+// FIXME: Fix negative values missing from includes
pub const O_NOFOLLOW: ::c_int = -0x8000_0000;
// netdb.h
pub const EAI_SYSTEM: ::c_int = -11;
// netinet/in.h
-// TODO: relibc {
+// FIXME: relibc {
pub const IP_TTL: ::c_int = 2;
pub const IPV6_UNICAST_HOPS: ::c_int = 16;
pub const IPV6_MULTICAST_IF: ::c_int = 17;
@@ -460,7 +460,7 @@ pub const IP_DROP_MEMBERSHIP: ::c_int = 36;
// netinet/tcp.h
pub const TCP_NODELAY: ::c_int = 1;
-// TODO: relibc {
+// FIXME: relibc {
pub const TCP_KEEPIDLE: ::c_int = 1;
// }
@@ -575,7 +575,7 @@ pub const EXIT_SUCCESS: ::c_int = 0;
pub const EXIT_FAILURE: ::c_int = 1;
// sys/ioctl.h
-// TODO: relibc {
+// FIXME: relibc {
pub const FIONBIO: ::c_ulong = 0x5421;
pub const FIOCLEX: ::c_ulong = 0x5451;
// }