about summary refs log tree commit diff
path: root/malloc/mtrace.c
blob: eccdb9d4e4210b109b66ef464b1ace8f23478170 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* mtrace API for `malloc'.
   Copyright (C) 1991-2024 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <https://www.gnu.org/licenses/>.  */

#if !IS_IN (libc)
# include "mtrace-impl.c"
#else
# include <shlib-compat.h>
# include <libc-symbols.h>
#endif

#if IS_IN (libc) && SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_34)
/* Compatibility symbols that were introduced to help break at allocation sites
   for specific memory allocations.  This is unusable with ASLR, although gdb
   may allow predictable allocation addresses.  Even then, gdb has watchpoint
   and conditional breakpoint support which should provide the same
   functionality without having this kludge.  These symbols are preserved in
   case some applications ended up linking against them but they don't actually
   do anything anymore; not that they did much before anyway.  */

void *mallwatch;
compat_symbol (libc, mallwatch, mallwatch, GLIBC_2_0);

void
tr_break (void)
{
}
compat_symbol (libc, tr_break, tr_break, GLIBC_2_0);
#endif


void
mtrace (void)
{
#if !IS_IN (libc)
  do_mtrace ();
#endif
}

void
muntrace (void)
{
#if !IS_IN (libc)
  do_muntrace ();
#endif
}