We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 424ae44 commit e8b13e8Copy full SHA for e8b13e8
src/rt/rust_task.h
@@ -120,7 +120,7 @@ rust_task_fail(rust_task *task,
120
size_t line);
121
122
struct
123
-rust_task : public kernel_owned<rust_task>, rust_cond
+rust_task : public kernel_owned<rust_task>
124
{
125
RUST_ATOMIC_REFCOUNT();
126
@@ -185,7 +185,7 @@ rust_task : public kernel_owned<rust_task>, rust_cond
185
bool killed;
186
// Indicates that we've called back into Rust from C
187
bool reentered_rust_stack;
188
- int disallow_kill;
+ unsigned long disallow_kill;
189
190
// The stack used for running C code, borrowed from the scheduler thread
191
stk_seg *c_stack;
0 commit comments