* include/sys/strace.h: Don't output paranoid_printf by default.
This commit is contained in:
parent
e83a0e6527
commit
804cd111b4
|
@ -1,3 +1,7 @@
|
|||
2004-12-10 Christopher Faylor <cgf@timesys.com>
|
||||
|
||||
* include/sys/strace.h: Don't output paranoid_printf by default.
|
||||
|
||||
2004-12-09 Christopher Faylor <cgf@timesys.com>
|
||||
|
||||
* lib/libcmain.c (main): Properly deal with quoted first argument.
|
||||
|
|
|
@ -117,7 +117,7 @@ void strace_printf (unsigned, const char *func, const char *, ...);
|
|||
#define define_strace1(c, ...) define_strace0 ((_STRACE_ ## c | _STRACE_NOTALL), __VA_ARGS__)
|
||||
|
||||
#define debug_printf(...) define_strace (DEBUG, __VA_ARGS__)
|
||||
#define paranoid_printf(...) define_strace (PARANOID, __VA_ARGS__)
|
||||
#define paranoid_printf(...) define_strace1 (PARANOID, __VA_ARGS__)
|
||||
#define select_printf(...) define_strace (SELECT, __VA_ARGS__)
|
||||
#define sigproc_printf(...) define_strace (SIGP, __VA_ARGS__)
|
||||
#define syscall_printf(...) define_strace (SYSCALL, __VA_ARGS__)
|
||||
|
|
Loading…
Reference in New Issue