summaryrefslogtreecommitdiff
path: root/test/tsan/debugging.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/tsan/debugging.cc')
-rw-r--r--test/tsan/debugging.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tsan/debugging.cc b/test/tsan/debugging.cc
index 653364404..0a82f4460 100644
--- a/test/tsan/debugging.cc
+++ b/test/tsan/debugging.cc
@@ -20,7 +20,7 @@ int __tsan_get_report_mop(void *report, unsigned long idx, int *tid,
void **addr, int *size, int *write, int *atomic,
void **trace, unsigned long trace_size);
int __tsan_get_report_thread(void *report, unsigned long idx, int *tid,
- unsigned long *os_id, int *running,
+ uint64_t *os_id, int *running,
const char **name, int *parent_tid, void **trace,
unsigned long trace_size);
}
@@ -90,7 +90,7 @@ void __tsan_on_report(void *report) {
fprintf(stderr, "thread_count = %d\n", thread_count);
// CHECK: thread_count = 2
- unsigned long os_id;
+ uint64_t os_id;
int running;
const char *name;
int parent_tid;