Skip to content

Commit 19a7098

Browse files
committed
---
yaml --- r: 6241 b: refs/heads/master c: 371574f h: refs/heads/master i: 6239: 6658079 v: v3
1 parent d628972 commit 19a7098

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: f5c4ce79a7d5081f8fef69b496908ba4bce640e4
2+
refs/heads/master: 371574f64b4f51d05c9af951d3f5525142841cc7

trunk/src/rt/rust_internal.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ struct rust_task;
5656
class rust_log;
5757
class rust_port;
5858
class rust_chan;
59-
struct rust_token;
6059
class rust_kernel;
6160
class rust_crate_cache;
6261

trunk/src/rt/rust_port.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
rust_port::rust_port(rust_task *task, size_t unit_sz)
77
: ref_count(1), kernel(task->kernel), task(task),
8-
unit_sz(unit_sz), writers(task) {
8+
unit_sz(unit_sz) {
99

1010
LOG(task, comm,
1111
"new rust_port(task=0x%" PRIxPTR ", unit_sz=%d) -> port=0x%"

trunk/src/rt/rust_port.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ class rust_port : public kernel_owned<rust_port>, public rust_cond {
1111
rust_task *task;
1212
rust_chan *remote_chan;
1313
size_t unit_sz;
14-
ptr_vec<rust_token> writers;
1514

1615
lock_and_signal lock;
1716

0 commit comments

Comments
 (0)