diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-01-29 18:20:27 +0100 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2016-01-29 18:20:27 +0100 |
commit | 2f6f1d246f19a66b763bef953cc461f62b42ecbe (patch) | |
tree | beb2bab88d37c87ee80ebb2ec1d339e564d45353 /core/command_queue_mt.h | |
parent | 18526a5793a6c731c00ef536c994d407c1d4d081 (diff) | |
parent | 0c85009f1cd3c137cb26287c7579933504fc94f5 (diff) |
Merge pull request #3509 from eska014/remove-debug-prints
Remove debug print
Diffstat (limited to 'core/command_queue_mt.h')
-rw-r--r-- | core/command_queue_mt.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/command_queue_mt.h b/core/command_queue_mt.h index 4fd33e3a55..142668f6f6 100644 --- a/core/command_queue_mt.h +++ b/core/command_queue_mt.h @@ -34,7 +34,6 @@ #include "os/mutex.h" #include "os/memory.h" #include "simple_type.h" -#include "print_string.h" /** @author Juan Linietsky <reduzio@gmail.com> */ @@ -175,7 +174,7 @@ class CommandQueueMT { R* ret; SyncSemaphore *sync; - virtual void call() { *ret = (instance->*method)(p1); sync->sem->post(); print_line("post"); sync->in_use=false; ; } + virtual void call() { *ret = (instance->*method)(p1); sync->sem->post(); sync->in_use=false; } }; template<class T,class M,class P1,class P2,class R> @@ -676,7 +675,6 @@ public: if (sync) sync->post(); ss->sem->wait(); - print_line("wait"); } template<class T, class M, class P1, class P2,class R> |