From 20bfba3a1d634235f0850dfdaaaa7cc99f46c7a6 Mon Sep 17 00:00:00 2001 From: Martin Elsman Date: Mon, 18 Nov 2024 21:02:21 +0100 Subject: [PATCH] jump macos --- src/Runtime/Profiling.c | 2 +- src/Runtime/Profiling.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Runtime/Profiling.c b/src/Runtime/Profiling.c index 63ebe338..a0cc88d3 100644 --- a/src/Runtime/Profiling.c +++ b/src/Runtime/Profiling.c @@ -1362,7 +1362,7 @@ void calcAllocInGen(Gen *gen,long *alloc, long *allocProf) #else /*PROFILING is not defined */ void -queueMark(StringDesc *str) +profDummy() { return; } diff --git a/src/Runtime/Profiling.h b/src/Runtime/Profiling.h index ec6d6a4a..b8082851 100644 --- a/src/Runtime/Profiling.h +++ b/src/Runtime/Profiling.h @@ -133,7 +133,7 @@ extern long raised_exn_overflow_prof; #else /*PROFILING not defined */ -void queueMark(StringDesc *str); /* does nothing */ +void profDummy(); /* does nothing */ #endif /*PROFILING*/