Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:13:31

0001 
0002 /*--------------------------------------------------------------------*/
0003 /*--- The translation table and cache.                             ---*/
0004 /*---                                          pub_tool_transtab.h ---*/
0005 /*--------------------------------------------------------------------*/
0006 
0007 /*
0008    This file is part of Valgrind, a dynamic binary instrumentation
0009    framework.
0010 
0011    Copyright (C) 2014-2017 Florian Krohm   (florian@eich-krohm.de)
0012 
0013    This program is free software; you can redistribute it and/or
0014    modify it under the terms of the GNU General Public License as
0015    published by the Free Software Foundation; either version 2 of the
0016    License, or (at your option) any later version.
0017 
0018    This program is distributed in the hope that it will be useful, but
0019    WITHOUT ANY WARRANTY; without even the implied warranty of
0020    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0021    General Public License for more details.
0022 
0023    You should have received a copy of the GNU General Public License
0024    along with this program; if not, see <http://www.gnu.org/licenses/>.
0025 
0026    The GNU General Public License is contained in the file COPYING.
0027 */
0028 
0029 #ifndef __PUB_TOOL_TRANSTAB_H
0030 #define __PUB_TOOL_TRANSTAB_H
0031 
0032 #include "pub_tool_basics.h"   // VG_ macro and primitive types
0033 
0034 void VG_(discard_translations_safely) ( Addr  start, SizeT len,
0035                                         const HChar* who );
0036 
0037 #endif   // __PUB_TOOL_TRANSTAB_H
0038 
0039 /*--------------------------------------------------------------------*/
0040 /*--- end                                                          ---*/
0041 /*--------------------------------------------------------------------*/