summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/race0.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/runtime/race0.c')
-rw-r--r--src/pkg/runtime/race0.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/pkg/runtime/race0.c b/src/pkg/runtime/race0.c
index 1c5f05a7e..b74b03583 100644
--- a/src/pkg/runtime/race0.c
+++ b/src/pkg/runtime/race0.c
@@ -43,21 +43,19 @@ runtime·racereadpc(void *addr, void *callpc, void *pc)
}
void
-runtime·racewriterangepc(void *addr, uintptr sz, uintptr step, void *callpc, void *pc)
+runtime·racewriterangepc(void *addr, uintptr sz, void *callpc, void *pc)
{
USED(addr);
USED(sz);
- USED(step);
USED(callpc);
USED(pc);
}
void
-runtime·racereadrangepc(void *addr, uintptr sz, uintptr step, void *callpc, void *pc)
+runtime·racereadrangepc(void *addr, uintptr sz, void *callpc, void *pc)
{
USED(addr);
USED(sz);
- USED(step);
USED(callpc);
USED(pc);
}
@@ -107,11 +105,10 @@ runtime·racefingo(void)
}
void
-runtime·racemalloc(void *p, uintptr sz, void *pc)
+runtime·racemalloc(void *p, uintptr sz)
{
USED(p);
USED(sz);
- USED(pc);
}
void