diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-06-21 14:17:54 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-06-21 16:03:28 -0700 |
| commit | c814df0bd67ba52357074d9f9a56327f93fdfcda (patch) | |
| tree | 08367039f3be827e98a808fb7d90be23e98226b2 /src/rt/rust_run_program.cpp | |
| parent | be8b09160bb6cefc239a8ede5e4ac01e1d61adf9 (diff) | |
| download | rust-c814df0bd67ba52357074d9f9a56327f93fdfcda.tar.gz rust-c814df0bd67ba52357074d9f9a56327f93fdfcda.zip | |
Comments only: annotate FIXMEs
Diffstat (limited to 'src/rt/rust_run_program.cpp')
| -rw-r--r-- | src/rt/rust_run_program.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_run_program.cpp b/src/rt/rust_run_program.cpp index 8d7396aab93..b089ac46934 100644 --- a/src/rt/rust_run_program.cpp +++ b/src/rt/rust_run_program.cpp @@ -160,7 +160,7 @@ rust_run_program(const char* argv[], for (int fd = getdtablesize() - 1; fd >= 3; fd--) close(fd); if (dir) { int result = chdir(dir); - // FIXME: need error handling + // FIXME: need error handling (#2674) assert(!result && "chdir failed"); } @@ -178,7 +178,7 @@ rust_run_program(const char* argv[], extern "C" CDECL int rust_process_wait(int proc) { - // FIXME: stub; exists to placate linker. + // FIXME: stub; exists to placate linker. (#2692) return 0; } |
