From 123469a0e9a5e669d868b00e938858bb97e8bff8 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Thu, 24 Aug 2000 17:23:35 +0000 Subject: * include/sys/cygwin.h (strace_printf_wrap): Force printing when _STRACE_SYSTEM. (strace_printf_wrap1): Ditto. --- winsup/cygwin/include/sys/strace.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'winsup/cygwin/include/sys/strace.h') diff --git a/winsup/cygwin/include/sys/strace.h b/winsup/cygwin/include/sys/strace.h index 8b621dfb4..82cc75d5c 100644 --- a/winsup/cygwin/include/sys/strace.h +++ b/winsup/cygwin/include/sys/strace.h @@ -95,13 +95,13 @@ extern "C" void small_printf (const char *, ...); #else #define strace_printf_wrap(what, fmt, args...) \ ((void) ({\ - if (strace.active) \ + if ((_STRACE_ ## what & _STRACE_SYSTEM) || strace.active) \ strace.prntf(_STRACE_ ## what, __PRETTY_FUNCTION__, fmt, ## args); \ 0; \ })) #define strace_printf_wrap1(what, fmt, args...) \ ((void) ({\ - if (strace.active) \ + if ((_STRACE_ ## what & _STRACE_SYSTEM) || strace.active) \ strace.prntf((_STRACE_ ## what) | _STRACE_NOTALL, __PRETTY_FUNCTION__, fmt, ## args); \ 0; \ })) -- cgit v1.2.3