blob: 100ac66b5548a3e755f78226c8b45129ea4cb227 [file] [log] [blame]
sewardjaf44c822007-11-25 14:01:38 +00001/*
bart86562bd2009-02-16 19:43:56 +00002 This file is part of drd, a thread error detector.
sewardjaf44c822007-11-25 14:01:38 +00003
Elliott Hughesed398002017-06-21 14:41:24 -07004 Copyright (C) 2006-2017 Bart Van Assche <bvanassche@acm.org>.
sewardjaf44c822007-11-25 14:01:38 +00005
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307, USA.
20
21 The GNU General Public License is contained in the file COPYING.
22*/
23
24#ifndef __MALLOC_WRAPPERS_H
25#define __MALLOC_WRAPPERS_H
26
27
bart246fbf22009-02-15 14:46:17 +000028#include "drd_basics.h" /* DRD_() */
29#include "pub_tool_basics.h" /* Bool */
30#include "pub_tool_execontext.h" /* ExeContext */
sewardjaf44c822007-11-25 14:01:38 +000031
32
bart513d8cf2009-06-04 09:57:54 +000033typedef void (*StartUsingMem)(const Addr a1, const SizeT len, UInt ec_uniq);
34typedef void (*StopUsingMem)(const Addr a1, const SizeT len);
sewardjaf44c822007-11-25 14:01:38 +000035
36
bart246fbf22009-02-15 14:46:17 +000037void DRD_(register_malloc_wrappers)(const StartUsingMem start_callback,
38 const StopUsingMem stop_callback);
bartba0818d2009-05-01 12:21:39 +000039void DRD_(malloclike_block)(const ThreadId tid, const Addr p, const SizeT size);
bartfc08a532011-03-12 12:43:39 +000040Bool DRD_(freelike_block)(const ThreadId tid, const Addr p, const Bool dealloc);
bart246fbf22009-02-15 14:46:17 +000041Bool DRD_(heap_addrinfo)(Addr const a,
42 Addr* const data,
43 SizeT* const size,
44 ExeContext** const where);
45void DRD_(print_malloc_stats)(void);
sewardjaf44c822007-11-25 14:01:38 +000046
47
48#endif // __MALLOC_WRAPPERS_H