aboutsummaryrefslogtreecommitdiff
path: root/src/rt/rust_message.h
diff options
context:
space:
mode:
authorMichael Bebenita <[email protected]>2010-08-24 21:06:56 -0700
committerMichael Bebenita <[email protected]>2010-08-24 21:07:14 -0700
commit64ff82ecf98ceb4725f0f51c73e23d1efc2160bc (patch)
tree6a6ae7452066716947c4d262eb72041a6a11cb95 /src/rt/rust_message.h
parentComment on env var required for std.dbg to do any logging. (diff)
downloadrust-64ff82ecf98ceb4725f0f51c73e23d1efc2160bc.tar.xz
rust-64ff82ecf98ceb4725f0f51c73e23d1efc2160bc.zip
Implemented an lock free queue based on this paper http://www.cs.rochester.edu/~scott/papers/1996_PODC_queues.pdf, the "lock free queue" we had before wasn't lock free at all.
Diffstat (limited to 'src/rt/rust_message.h')
-rw-r--r--src/rt/rust_message.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_message.h b/src/rt/rust_message.h
index 6d986acf..7aee6d9f 100644
--- a/src/rt/rust_message.h
+++ b/src/rt/rust_message.h
@@ -9,7 +9,7 @@
/**
* Abstract base class for all message types.
*/
-class rust_message : public lock_free_queue_node {
+class rust_message {
public:
const char* label;
private: