Skip to content

Commit d6f2594

Browse files
committed
---
yaml --- r: 31155 b: refs/heads/dist-snap c: 81ecd27 h: refs/heads/master i: 31153: 9874b6f 31151: 8cc0639 v: v3
1 parent a215dbb commit d6f2594

File tree

8 files changed

+11
-10
lines changed

8 files changed

+11
-10
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
99
refs/heads/incoming: d9317a174e434d4c99fc1a37fd7dc0d2f5328d37
10-
refs/heads/dist-snap: fe77e962a826ac41354a7b1b4afa08c527e86e8c
10+
refs/heads/dist-snap: 81ecd272d349a744a3a5f21b7eb4ef3c79d9188f
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/dist-snap/src/libcore/task.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ type task_opts = {
181181
// sidestep that whole issue by making builders uncopyable and making
182182
// the run function move them in.
183183
enum builder {
184-
builder_({
184+
builder_({
185185
mut opts: task_opts,
186186
mut gen_body: fn@(+fn~()) -> fn~(),
187187
can_not_copy: option<comm::port<()>>

branches/dist-snap/src/rt/rust_abi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define HAVE_DLFCN_H
1212
#include <dlfcn.h>
1313
#elif defined(_WIN32)
14-
// TODO
14+
// FIXME #2889
1515
#endif
1616

1717
#define END_OF_STACK_RA (void (*)())0xdeadbeef

branches/dist-snap/src/rt/rust_builtin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -938,8 +938,8 @@ task_clear_event_reject(rust_task *task) {
938938
// task.
939939
extern "C" void *
940940
task_wait_event(rust_task *task, bool *killed) {
941-
// TODO: we should assert that the passed in task is the currently running
942-
// task. We wouldn't want to wait some other task.
941+
// FIXME #2890: we should assert that the passed in task is the currently
942+
// running task. We wouldn't want to wait some other task.
943943

944944
return task->wait_event(killed);
945945
}

branches/dist-snap/src/rt/rust_sched_loop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ rust_sched_loop::rust_sched_loop(rust_scheduler *sched,int id) :
2525
log_lvl(log_debug),
2626
min_stack_size(kernel->env->min_stack_size),
2727
local_region(kernel->env, false),
28-
// TODO: calculate a per scheduler name.
28+
// FIXME #2891: calculate a per-scheduler name.
2929
name("main")
3030
{
3131
LOGPTR(this, "new dom", (uintptr_t)this);

branches/dist-snap/src/rt/rust_shape.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ size_of::walk_struct1(const uint8_t *end_sp) {
160160
#if 0
161161

162162
class copy : public data<copy,uint8_t *> {
163-
// TODO
163+
// FIXME #2892
164164
};
165165

166166
#endif

branches/dist-snap/src/rt/rust_shape.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ class print : public ctxt<print> {
570570
// Size-of (which also computes alignment). Be warned: this is an expensive
571571
// operation.
572572
//
573-
// TODO: Maybe dynamic_size_of() should call into this somehow?
573+
// FIXME #2894: Maybe dynamic_size_of() should call into this somehow?
574574
//
575575

576576
class size_of : public ctxt<size_of> {
@@ -612,7 +612,7 @@ class size_of : public ctxt<size_of> {
612612
}
613613

614614
void walk_res1(const rust_fn *dtor, const uint8_t *end_sp) {
615-
abort(); // TODO
615+
abort(); // FIXME #2895
616616
}
617617

618618
void walk_fixedvec1(uint16_t n_elts, bool is_pod) {

branches/dist-snap/src/rt/sync/lock_and_signal.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ lock_and_signal::lock_and_signal()
2929
const DWORD SPIN_COUNT = 4000;
3030
CHECKED(!InitializeCriticalSectionAndSpinCount(&_cs, SPIN_COUNT));
3131

32-
// TODO? Consider checking GetProcAddress("InitializeCriticalSectionEx")
32+
// FIXME #2893 Consider checking
33+
// GetProcAddress("InitializeCriticalSectionEx")
3334
// so Windows >= Vista we can use CRITICAL_SECTION_NO_DEBUG_INFO to avoid
3435
// allocating CRITICAL_SECTION debug info that is never released. See:
3536
// http://stackoverflow.com/questions/804848/

0 commit comments

Comments
 (0)