aboutsummaryrefslogtreecommitdiff
path: root/debug.h
diff options
context:
space:
mode:
authorJuan Cespedes <juan.cespedes@imdea.org>2009-07-23 18:22:58 +0200
committerJuan Cespedes <juan.cespedes@imdea.org>2009-07-23 18:22:58 +0200
commitc5c744a3b5a6e0d1f4826fabb31ffab2ec0170f3 (patch)
tree2db1d42a40d7823e1ca1b07f5dcb7e46359bd716 /debug.h
parent427b7811598f905b583ac86b35c72228fd415476 (diff)
downloadltrace-c5c744a3b5a6e0d1f4826fabb31ffab2ec0170f3.tar.gz
Clarified debug levels (try --debug=help)
Diffstat (limited to 'debug.h')
-rw-r--r--debug.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/debug.h b/debug.h
index 6b30e6a..653da84 100644
--- a/debug.h
+++ b/debug.h
@@ -3,9 +3,9 @@
/* debug levels:
*/
enum {
- DEBUG_EVENT = 0x10,
- DEBUG_PROCESS = 0x20,
- DEBUG_FUNCTION = 0x40
+ DEBUG_EVENT = 010,
+ DEBUG_PROCESS = 020,
+ DEBUG_FUNCTION = 040
};
void debug_(int level, const char *file, int line,