Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/signal.cc')
-rw-r--r--winsup/cygwin/signal.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/signal.cc b/winsup/cygwin/signal.cc
index c99220d35..a3f595e1a 100644
--- a/winsup/cygwin/signal.cc
+++ b/winsup/cygwin/signal.cc
@@ -273,7 +273,7 @@ _pinfo::kill (siginfo_t& si)
res = -1;
}
- syscall_printf ("%d = _pinfo::kill (%d), pid %d, process_state %p", res,
+ syscall_printf ("%d = _pinfo::kill (%d), pid %d, process_state %y", res,
si.si_signo, this_pid, this_process_state);
return res;
}
@@ -516,7 +516,7 @@ extern "C" int
sigpause (int signal_mask)
{
int res = handle_sigsuspend ((sigset_t) signal_mask);
- syscall_printf ("%R = sigpause(%p)", res, signal_mask);
+ syscall_printf ("%R = sigpause(%y)", res, signal_mask);
return res;
}
@@ -544,7 +544,7 @@ siginterrupt (int sig, int flag)
act.sa_flags |= SA_RESTART;
}
int res = sigaction_worker (sig, &act, NULL, true);
- syscall_printf ("%R = siginterrupt(%d, %p)", sig, flag);
+ syscall_printf ("%R = siginterrupt(%d, %y)", sig, flag);
return res;
}