Skip to content

Commit 483bb81

Browse files
committed
Replace TODO with FIXME to make grep easy
1 parent 92ae2be commit 483bb81

File tree

17 files changed

+50
-50
lines changed

17 files changed

+50
-50
lines changed

ci/emscripten.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ exit 1
3030

3131
git clone https://github.com/emscripten-core/emsdk.git /emsdk-portable
3232
cd /emsdk-portable
33-
# TODO: switch to an upstream install once
33+
# FIXME: switch to an upstream install once
3434
# https://github.com/rust-lang/rust/pull/63649 lands
3535
hide_output ./emsdk install 1.38.42
3636
./emsdk activate 1.38.42

src/cloudabi/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ impl ::Clone for FILE {
120120
}
121121
}
122122
#[cfg_attr(feature = "extra_traits", derive(Debug))]
123-
pub enum fpos_t {} // TODO: fill this out with a struct
123+
pub enum fpos_t {} // FIXME: fill this out with a struct
124124
impl ::Copy for fpos_t {}
125125
impl ::Clone for fpos_t {
126126
fn clone(&self) -> fpos_t {

src/fuchsia/mod.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ impl ::Clone for DIR {
109109
}
110110

111111
#[cfg_attr(feature = "extra_traits", derive(Debug))]
112-
pub enum fpos64_t {} // TODO: fill this out with a struct
112+
pub enum fpos64_t {} // FIXME: fill this out with a struct
113113
impl ::Copy for fpos64_t {}
114114
impl ::Clone for fpos64_t {
115115
fn clone(&self) -> fpos64_t {
@@ -1416,7 +1416,7 @@ pub const F_SEAL_SHRINK: ::c_int = 0x0002;
14161416
pub const F_SEAL_GROW: ::c_int = 0x0004;
14171417
pub const F_SEAL_WRITE: ::c_int = 0x0008;
14181418

1419-
// TODO(#235): Include file sealing fcntls once we have a way to verify them.
1419+
// FIXME(#235): Include file sealing fcntls once we have a way to verify them.
14201420

14211421
pub const SIGTRAP: ::c_int = 5;
14221422

@@ -1433,7 +1433,7 @@ pub const CLOCK_MONOTONIC_COARSE: ::clockid_t = 6;
14331433
pub const CLOCK_BOOTTIME: ::clockid_t = 7;
14341434
pub const CLOCK_REALTIME_ALARM: ::clockid_t = 8;
14351435
pub const CLOCK_BOOTTIME_ALARM: ::clockid_t = 9;
1436-
// TODO(#247) Someday our Travis shall have glibc 2.21 (released in Sep
1436+
// FIXME(#247) Someday our Travis shall have glibc 2.21 (released in Sep
14371437
// 2014.) See also musl/mod.rs
14381438
// pub const CLOCK_SGI_CYCLE: ::clockid_t = 10;
14391439
// pub const CLOCK_TAI: ::clockid_t = 11;
@@ -2773,7 +2773,7 @@ pub const TIOCINQ: ::c_int = ::FIONREAD;
27732773
pub const RTLD_GLOBAL: ::c_int = 0x100;
27742774
pub const RTLD_NOLOAD: ::c_int = 0x4;
27752775

2776-
// TODO(#247) Temporarily musl-specific (available since musl 0.9.12 / Linux
2776+
// FIXME(#247) Temporarily musl-specific (available since musl 0.9.12 / Linux
27772777
// kernel 3.10). See also notbsd/mod.rs
27782778
pub const CLOCK_SGI_CYCLE: ::clockid_t = 10;
27792779
pub const CLOCK_TAI: ::clockid_t = 11;
@@ -3273,7 +3273,7 @@ impl ::Clone for FILE {
32733273
}
32743274
}
32753275
#[cfg_attr(feature = "extra_traits", derive(Debug))]
3276-
pub enum fpos_t {} // TODO: fill this out with a struct
3276+
pub enum fpos_t {} // FIXME: fill this out with a struct
32773277
impl ::Copy for fpos_t {}
32783278
impl ::Clone for fpos_t {
32793279
fn clone(&self) -> fpos_t {

src/unix/haiku/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ pub const LC_NUMERIC: ::c_int = 4;
662662
pub const LC_TIME: ::c_int = 5;
663663
pub const LC_MESSAGES: ::c_int = 6;
664664

665-
// TODO: Haiku does not have MAP_FILE, but libstd/os.rs requires it
665+
// FIXME: Haiku does not have MAP_FILE, but libstd/os.rs requires it
666666
pub const MAP_FILE: ::c_int = 0x00;
667667
pub const MAP_SHARED: ::c_int = 0x01;
668668
pub const MAP_PRIVATE: ::c_int = 0x02;
@@ -994,7 +994,7 @@ pub const PTHREAD_MUTEX_NORMAL: ::c_int = 1;
994994
pub const PTHREAD_MUTEX_ERRORCHECK: ::c_int = 2;
995995
pub const PTHREAD_MUTEX_RECURSIVE: ::c_int = 3;
996996

997-
pub const FIOCLEX: c_ulong = 0; // TODO: does not exist on Haiku!
997+
pub const FIOCLEX: c_ulong = 0; // FIXME: does not exist on Haiku!
998998

999999
pub const RUSAGE_CHILDREN: ::c_int = -1;
10001000

src/unix/linux_like/emscripten/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub type c_ulong = u32;
3535
pub type nlink_t = u32;
3636

3737
#[cfg_attr(feature = "extra_traits", derive(Debug))]
38-
pub enum fpos64_t {} // TODO: fill this out with a struct
38+
pub enum fpos64_t {} // FIXME: fill this out with a struct
3939
impl ::Copy for fpos64_t {}
4040
impl ::Clone for fpos64_t {
4141
fn clone(&self) -> fpos64_t {
@@ -1286,7 +1286,7 @@ pub const TIOCINQ: ::c_int = ::FIONREAD;
12861286
pub const RTLD_GLOBAL: ::c_int = 0x100;
12871287
pub const RTLD_NOLOAD: ::c_int = 0x4;
12881288

1289-
// TODO(#247) Temporarily musl-specific (available since musl 0.9.12 / Linux
1289+
// FIXME(#247) Temporarily musl-specific (available since musl 0.9.12 / Linux
12901290
// kernel 3.10). See also linux_like/mod.rs
12911291
pub const CLOCK_SGI_CYCLE: ::clockid_t = 10;
12921292
pub const CLOCK_TAI: ::clockid_t = 11;

src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ pub const HWCAP_SSBS: ::c_ulong = 1 << 28;
695695
pub const HWCAP_SB: ::c_ulong = 1 << 29;
696696
pub const HWCAP_PACA: ::c_ulong = 1 << 30;
697697
pub const HWCAP_PACG: ::c_ulong = 1 << 31;
698-
// TODO: enable these again once linux-api-headers are up to date enough on CI.
698+
// FIXME: enable these again once linux-api-headers are up to date enough on CI.
699699
// See discussion in https://github.com/rust-lang/libc/pull/1638
700700
//pub const HWCAP2_DCPODP: ::c_ulong = 1 << 0;
701701
//pub const HWCAP2_SVE2: ::c_ulong = 1 << 1;

src/unix/linux_like/linux/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub type Elf32_Section = u16;
3737
pub type Elf64_Section = u16;
3838

3939
#[cfg_attr(feature = "extra_traits", derive(Debug))]
40-
pub enum fpos64_t {} // TODO: fill this out with a struct
40+
pub enum fpos64_t {} // FIXME: fill this out with a struct
4141
impl ::Copy for fpos64_t {}
4242
impl ::Clone for fpos64_t {
4343
fn clone(&self) -> fpos64_t {

src/unix/linux_like/linux/musl/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ pub const TCSAFLUSH: ::c_int = 2;
327327
pub const RTLD_GLOBAL: ::c_int = 0x100;
328328
pub const RTLD_NOLOAD: ::c_int = 0x4;
329329

330-
// TODO(#247) Temporarily musl-specific (available since musl 0.9.12 / Linux
330+
// FIXME(#247) Temporarily musl-specific (available since musl 0.9.12 / Linux
331331
// kernel 3.10). See also linux_like/mod.rs
332332
pub const CLOCK_SGI_CYCLE: ::clockid_t = 10;
333333
pub const CLOCK_TAI: ::clockid_t = 11;

src/unix/linux_like/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ pub const F_SEAL_SHRINK: ::c_int = 0x0002;
482482
pub const F_SEAL_GROW: ::c_int = 0x0004;
483483
pub const F_SEAL_WRITE: ::c_int = 0x0008;
484484

485-
// TODO(#235): Include file sealing fcntls once we have a way to verify them.
485+
// FIXME(#235): Include file sealing fcntls once we have a way to verify them.
486486

487487
pub const SIGTRAP: ::c_int = 5;
488488

@@ -499,7 +499,7 @@ pub const CLOCK_MONOTONIC_COARSE: ::clockid_t = 6;
499499
pub const CLOCK_BOOTTIME: ::clockid_t = 7;
500500
pub const CLOCK_REALTIME_ALARM: ::clockid_t = 8;
501501
pub const CLOCK_BOOTTIME_ALARM: ::clockid_t = 9;
502-
// TODO(#247) Someday our Travis shall have glibc 2.21 (released in Sep
502+
// FIXME(#247) Someday our Travis shall have glibc 2.21 (released in Sep
503503
// 2014.) See also musl/mod.rs
504504
// pub const CLOCK_SGI_CYCLE: ::clockid_t = 10;
505505
// pub const CLOCK_TAI: ::clockid_t = 11;

src/unix/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ impl ::Clone for FILE {
365365
}
366366
}
367367
#[cfg_attr(feature = "extra_traits", derive(Debug))]
368-
pub enum fpos_t {} // TODO: fill this out with a struct
368+
pub enum fpos_t {} // FIXME: fill this out with a struct
369369
impl ::Copy for fpos_t {}
370370
impl ::Clone for fpos_t {
371371
fn clone(&self) -> fpos_t {

0 commit comments

Comments
 (0)