Skip to content

Commit 1f2ee4b

Browse files
committed
Oops, switch more TODOs to FIXMEs
1 parent d39a336 commit 1f2ee4b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/rt/rust_task.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include "rust_env.h"
1111
#include "rust_port.h"
1212

13-
// TODO(bblum): get rid of supervisors
13+
// FIXME (#1789) (bblum): get rid of supervisors
1414

1515
// Tasks
1616
rust_task::rust_task(rust_sched_loop *sched_loop, rust_task_state state,
@@ -293,7 +293,7 @@ rust_task::kill() {
293293
LOG(this, task, "preparing to unwind task: 0x%" PRIxPTR, this);
294294
}
295295

296-
// TODO(bblum): Move this to rust_builtin.cpp (cleanup)
296+
// (bblum): Move this to rust_builtin.cpp (cleanup)
297297
extern "C" CDECL
298298
bool rust_task_is_unwinding(rust_task *rt) {
299299
return rt->unwinding;

src/rt/rust_task.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ rust_task : public kernel_owned<rust_task>
276276
void fail(char const *expr, char const *file, size_t line);
277277

278278
// Propagate failure to the entire rust runtime.
279-
// TODO(bblum): maybe this can be done at rust-level?
279+
// FIXME (#1868) (bblum): maybe this can be done at rust-level?
280280
void fail_sched_loop();
281281

282282
// Disconnect from our supervisor.

0 commit comments

Comments
 (0)