summaryrefslogtreecommitdiff
path: root/libgo/runtime/race.h
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/runtime/race.h')
-rw-r--r--libgo/runtime/race.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgo/runtime/race.h b/libgo/runtime/race.h
index 3357bed312d..884245cedad 100644
--- a/libgo/runtime/race.h
+++ b/libgo/runtime/race.h
@@ -16,14 +16,14 @@ uintptr runtime_raceinit(void);
void runtime_racefini(void);
void runtime_racemapshadow(void *addr, uintptr size);
-void runtime_racemalloc(void *p, uintptr sz, void *pc);
+void runtime_racemalloc(void *p, uintptr sz);
void runtime_racefree(void *p);
uintptr runtime_racegostart(void *pc);
void runtime_racegoend(void);
void runtime_racewritepc(void *addr, void *callpc, void *pc);
void runtime_racereadpc(void *addr, void *callpc, void *pc);
-void runtime_racewriterangepc(void *addr, uintptr sz, uintptr step, void *callpc, void *pc);
-void runtime_racereadrangepc(void *addr, uintptr sz, uintptr step, void *callpc, void *pc);
+void runtime_racewriterangepc(void *addr, uintptr sz, void *callpc, void *pc);
+void runtime_racereadrangepc(void *addr, uintptr sz, void *callpc, void *pc);
void runtime_racefingo(void);
void runtime_raceacquire(void *addr);
void runtime_raceacquireg(G *gp, void *addr);