projects
/
yaz-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2632316
)
MUTEX log: precede delay value with blank
author
Adam Dickmeiss
<adam@indexdata.dk>
Wed, 24 Mar 2010 10:24:37 +0000
(11:24 +0100)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Wed, 24 Mar 2010 10:24:37 +0000
(11:24 +0100)
Was preceded with a =-sign before.. Easier to awk/grep with a blank.
src/mutex.c
patch
|
blob
|
history
diff --git
a/src/mutex.c
b/src/mutex.c
index
aeaf221
..
aff0a13
100644
(file)
--- a/
src/mutex.c
+++ b/
src/mutex.c
@@
-100,7
+100,7
@@
void yaz_mutex_enter(YAZ_MUTEX p)
d = 1000000LL * ((long long) tv2.tv_sec - tv1.tv_sec) +
tv2.tv_usec - tv1.tv_usec;
yaz_log(p->log_level, "yaz_mutex_enter: %p tid=%p name=%s "
- "lock delay=%lld",
+ "lock delay %lld",
p, (void *) pthread_self(), p->name, d);
#endif
}