mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 10:21:20 +00:00
- Use SizeT instead of UInt for new_mem_stack and all the related functions. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2908
76 lines
3.1 KiB
C
76 lines
3.1 KiB
C
|
|
/*--------------------------------------------------------------------*/
|
|
/*--- Basic types basic_types.h ---*/
|
|
/*--------------------------------------------------------------------*/
|
|
|
|
/*
|
|
This file is part of Valgrind, an extensible x86 protected-mode
|
|
emulator for monitoring program execution on x86-Unixes.
|
|
|
|
Copyright (C) 2000-2004 Julian Seward
|
|
jseward@acm.org
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program 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
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307, USA.
|
|
|
|
The GNU General Public License is contained in the file COPYING.
|
|
*/
|
|
|
|
#ifndef __BASIC_TYPES_H
|
|
#define __BASIC_TYPES_H
|
|
|
|
/* ---------------------------------------------------------------------
|
|
Basic types
|
|
------------------------------------------------------------------ */
|
|
|
|
// By choosing the right types, we can get these right for 32-bit and 64-bit
|
|
// platforms without having to do any conditional compilation or anything.
|
|
//
|
|
// Size in bits on: 32-bit archs 64-bit archs
|
|
// ------------ ------------
|
|
typedef unsigned char UChar; // 8 8
|
|
typedef unsigned short UShort; // 16 16
|
|
typedef unsigned int UInt; // 32 32
|
|
typedef unsigned long UWord; // 32 64
|
|
typedef unsigned long long ULong; // 64 64
|
|
|
|
typedef signed char Char; // 8 8
|
|
typedef signed short Short; // 16 16
|
|
typedef signed int Int; // 32 32
|
|
typedef signed long Word; // 32 64
|
|
typedef signed long long Long; // 64 64
|
|
|
|
typedef UWord Addr; // 32 64
|
|
|
|
typedef UWord SizeT; // 32 64
|
|
typedef Word SSizeT; // 32 64
|
|
|
|
typedef UChar Bool; // 8 8
|
|
#define False ((Bool)0)
|
|
#define True ((Bool)1)
|
|
|
|
/* ---------------------------------------------------------------------
|
|
Where to send bug reports to.
|
|
------------------------------------------------------------------ */
|
|
|
|
#define VG_BUGS_TO "valgrind.kde.org"
|
|
|
|
|
|
#endif /* __BASIC_TYPES_H */
|
|
|
|
/*--------------------------------------------------------------------*/
|
|
/*--- end ---*/
|
|
/*--------------------------------------------------------------------*/
|