mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-07 20:50:56 +00:00
18 lines
551 B
C
18 lines
551 B
C
#ifndef __PUB_CORE_DRD_H
|
|
#define __PUB_CORE_DRD_H
|
|
|
|
|
|
#include "pub_tool_basics.h"
|
|
|
|
void suppression_set_trace(const Bool trace_suppression);
|
|
void drd_suppression_init(void);
|
|
void drd_start_suppression(const Addr a1, const Addr a2,
|
|
const char* const reason);
|
|
void drd_finish_suppression(const Addr a1, const Addr a2);
|
|
Bool drd_is_suppressed(const Addr a1, const Addr a2);
|
|
Bool drd_is_any_suppressed(const Addr a1, const Addr a2);
|
|
void drd_suppression_stop_using_mem(const Addr a1, const Addr a2);
|
|
|
|
|
|
#endif // __PUB_CORE_DRD_H
|