summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKuba Mracek <mracek@apple.com>2017-04-17 19:51:58 +0000
committerKuba Mracek <mracek@apple.com>2017-04-17 19:51:58 +0000
commit7fdd4f88d986a37e86cdbe5dce789fb759400a61 (patch)
tree498d5253cbfce540bedca349c4f3067b7a13c4e3
parenta3566f2149bad9ebe330b4e3429cce8c028f3192 (diff)
downloadbcm5719-llvm-7fdd4f88d986a37e86cdbe5dce789fb759400a61.tar.gz
bcm5719-llvm-7fdd4f88d986a37e86cdbe5dce789fb759400a61.zip
Fixup for r300473: Use %lu on Linux for tid_t in format strings.
llvm-svn: 300483
-rw-r--r--compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc b/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
index 91ce58c2515..81ff70963e2 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
@@ -126,10 +126,10 @@ bool ThreadSuspender::SuspendThread(tid_t tid) {
&pterrno)) {
// Either the thread is dead, or something prevented us from attaching.
// Log this event and move on.
- VReport(1, "Could not attach to thread %d (errno %d).\n", tid, pterrno);
+ VReport(1, "Could not attach to thread %lu (errno %d).\n", tid, pterrno);
return false;
} else {
- VReport(2, "Attached to thread %d.\n", tid);
+ VReport(2, "Attached to thread %lu.\n", tid);
// The thread is not guaranteed to stop before ptrace returns, so we must
// wait on it. Note: if the thread receives a signal concurrently,
// we can get notification about the signal before notification about stop.
@@ -147,7 +147,7 @@ bool ThreadSuspender::SuspendThread(tid_t tid) {
if (internal_iserror(waitpid_status, &wperrno)) {
// Got a ECHILD error. I don't think this situation is possible, but it
// doesn't hurt to report it.
- VReport(1, "Waiting on thread %d failed, detaching (errno %d).\n",
+ VReport(1, "Waiting on thread %lu failed, detaching (errno %d).\n",
tid, wperrno);
internal_ptrace(PTRACE_DETACH, tid, nullptr, nullptr);
return false;
OpenPOWER on IntegriCloud