From a3972487fb52bf78a02ab7ab8010b71fe236f60a Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 27 Aug 2015 07:10:08 -0600 Subject: [PATCH] unbreak Linux build --- racket/src/racket/gc2/sighand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racket/src/racket/gc2/sighand.c b/racket/src/racket/gc2/sighand.c index 9f5ac3cbcf..f92e7063ab 100644 --- a/racket/src/racket/gc2/sighand.c +++ b/racket/src/racket/gc2/sighand.c @@ -84,7 +84,7 @@ void fault_handler(int sn, siginfo_t *si, void *ctx) /* running w/ places in GDB */ printf("SIGSEGV SI_USER SI_ERRNO %i fault on addr %p\n", si->si_errno, p); #ifdef MZ_USE_PLACES - printf("pid %i uid %i thread %lx\n", si->si_pid, si->si_uid, mz_proc_thread_self()); + printf("pid %i uid %i thread %lx\n", si->si_pid, si->si_uid, mz_proc_os_thread_self()); #else printf("pid %i uid %i\n", si->si_pid, si->si_uid); #endif