From 1bd331b7aaa24245f86868305ab64600683a41e1 Mon Sep 17 00:00:00 2001 From: Michael Bebenita Date: Wed, 15 Sep 2010 11:56:45 -0700 Subject: Fixed deadlock caused by the message pump not being notified of new message sends. --- src/rt/sync/lock_free_queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rt/sync/lock_free_queue.h') diff --git a/src/rt/sync/lock_free_queue.h b/src/rt/sync/lock_free_queue.h index ac0c5b04..1c760bff 100644 --- a/src/rt/sync/lock_free_queue.h +++ b/src/rt/sync/lock_free_queue.h @@ -120,7 +120,7 @@ public: return head.node == tail.node; } - void enqueue(T value) { + virtual void enqueue(T value) { // Create a new node to be inserted in the linked list, and set the // next node to NULL. -- cgit v1.2.3