aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/net/SocketTimeoutException.java
AgeCommit message (Expand)AuthorFilesLines
2002-08-21Makefile.in: Rebuilt.Tom Tromey1-9/+12
2002-08-20URISyntaxException.java: New file.Michael Koch1-0/+69
'commit info' class='commit-info'> authorKito Cheng <kito.cheng@sifive.com>2024-11-01 15:33:03 +0800 committerKito Cheng <kito.cheng@sifive.com>2024-11-12 21:56:06 +0800 commitfa321004f3f6288d3ee2eefa6b02177131882dca (patch) tree6e111379127d142eb20c7630a44254124adef5bb /libsanitizer/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp parentb8ecd96aea9a97a60b143fc70efa6d03d0f188a2 (diff)downloadgcc-fa321004f3f6288d3ee2eefa6b02177131882dca.zip
gcc-fa321004f3f6288d3ee2eefa6b02177131882dca.tar.gz
gcc-fa321004f3f6288d3ee2eefa6b02177131882dca.tar.bz2
libsanitizer: merge from upstream (61a6439f35b6de28)
Diffstat (limited to 'libsanitizer/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp')
-rw-r--r--libsanitizer/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsanitizer/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp b/libsanitizer/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp
index 701db72..58a0cfd 100644
--- a/libsanitizer/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp
+++ b/libsanitizer/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp
@@ -158,8 +158,8 @@ static void TracerThreadDieCallback() {
static void TracerThreadSignalHandler(int signum, __sanitizer_siginfo *siginfo,
void *uctx) {
SignalContext ctx(siginfo, uctx);
- Printf("Tracer caught signal %d: addr=0x%zx pc=0x%zx sp=0x%zx\n", signum,
- ctx.addr, ctx.pc, ctx.sp);
+ Printf("Tracer caught signal %d: addr=%p pc=%p sp=%p\n", signum,
+ (void *)ctx.addr, (void *)ctx.pc, (void *)ctx.sp);
ThreadSuspender *inst = thread_suspender_instance;
if (inst) {
if (signum == SIGABRT)