diff options
Diffstat (limited to 'libgo/runtime/race.h')
-rw-r--r-- | libgo/runtime/race.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libgo/runtime/race.h b/libgo/runtime/race.h index 884245cedad..c97e672fed5 100644 --- a/libgo/runtime/race.h +++ b/libgo/runtime/race.h @@ -24,6 +24,8 @@ 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, void *callpc, void *pc); void runtime_racereadrangepc(void *addr, uintptr sz, void *callpc, void *pc); +void runtime_racereadobjectpc(void *addr, Type *t, void *callpc, void *pc); +void runtime_racewriteobjectpc(void *addr, Type *t, void *callpc, void *pc); void runtime_racefingo(void); void runtime_raceacquire(void *addr); void runtime_raceacquireg(G *gp, void *addr); |