Skip to content

Commit ee991ca

Browse files
committed
rt: Add a hack to fix a port detach bug
1 parent 32f7818 commit ee991ca

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

src/libcore/comm.rs

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ native mod rustrt {
4444
fn del_port(po: *rust_port);
4545
fn rust_port_begin_detach(po: *rust_port,
4646
yield: *ctypes::uintptr_t);
47+
fn rust_port_end_detach(po: *rust_port);
4748
fn get_port_id(po: *rust_port) -> port_id;
4849
fn rust_port_size(po: *rust_port) -> ctypes::size_t;
4950
fn port_recv(dptr: *uint, po: *rust_port,
@@ -92,6 +93,7 @@ resource port_ptr<T: send>(po: *rust_port) {
9293
// in a bogus state.
9394
task::yield();
9495
}
96+
rustrt::rust_port_end_detach(po);
9597

9698
// Drain the port so that all the still-enqueued items get dropped
9799
while rustrt::rust_port_size(po) > 0u {

src/rt/rust_builtin.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -488,12 +488,16 @@ rust_port_begin_detach(rust_port *port, uintptr_t *yield) {
488488
port->begin_detach(yield);
489489
}
490490

491+
extern "C" CDECL void
492+
rust_port_end_detach(rust_port *port) {
493+
port->end_detach();
494+
}
495+
491496
extern "C" CDECL void
492497
del_port(rust_port *port) {
493498
rust_task *task = rust_task_thread::get_task();
494499
LOG(task, comm, "del_port(0x%" PRIxPTR ")", (uintptr_t) port);
495500
A(task->thread, port->get_ref_count() == 0, "Expected port ref_count == 0");
496-
port->end_detach();
497501
delete port;
498502
}
499503

src/rt/rust_port.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ void rust_port::begin_detach(uintptr_t *yield) {
4444
}
4545

4646
void rust_port::end_detach() {
47+
// FIXME: For some reason we can sometimes get here without the
48+
// refcount decreasing to 0. This is definitely a bug
49+
while (get_ref_count() != 0) { }
50+
4751
// Just take the lock to make sure that the thread that signaled
4852
// the detach_cond isn't still holding it
4953
scoped_lock with(detach_lock);

src/rt/rustrt.def.in

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ rust_list_files
3535
rust_log_console_on
3636
rust_log_console_off
3737
rust_port_begin_detach
38+
rust_port_end_detach
3839
rust_port_size
3940
rust_process_wait
4041
rust_ptr_eq

0 commit comments

Comments
 (0)