about summary refs log tree commit diff
path: root/src/rt/rust_run_program.cpp
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-06-21 14:17:54 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-06-21 16:03:28 -0700
commitc814df0bd67ba52357074d9f9a56327f93fdfcda (patch)
tree08367039f3be827e98a808fb7d90be23e98226b2 /src/rt/rust_run_program.cpp
parentbe8b09160bb6cefc239a8ede5e4ac01e1d61adf9 (diff)
downloadrust-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.cpp4
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;
 }