projects
/
barrelfish
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
b0c3350
)
Remove debug print in waitset.c
author
Gerd Zellweger
<mail@gerdzellweger.com>
Tue, 11 Jul 2017 09:12:00 +0000 (11:12 +0200)
committer
Gerd Zellweger
<mail@gerdzellweger.com>
Tue, 11 Jul 2017 09:12:32 +0000 (11:12 +0200)
Signed-off-by: Gerd Zellweger <mail@gerdzellweger.com>
lib/barrelfish/waitset.c
patch
|
blob
|
history
diff --git
a/lib/barrelfish/waitset.c
b/lib/barrelfish/waitset.c
index
1ae184c
..
6551f0c
100644
(file)
--- a/
lib/barrelfish/waitset.c
+++ b/
lib/barrelfish/waitset.c
@@
-55,11
+55,6
@@
static void dequeue(struct waitset_chanstate **queue, struct waitset_chanstate *
static void enqueue(struct waitset_chanstate **queue, struct waitset_chanstate *chan)
{
assert(chan != NULL);
- if (queue == (void*)0x8) {
- printf("callstack: %zu %p %p\n",
- __builtin_return_address(0));
- }
-
if (*queue == NULL) {
*queue = chan;
chan->next = chan->prev = chan;