blob: bedfb77564e6c02e1643467f06ba48f441aeb35e [file] [log] [blame]
sewardj4eee4762006-10-14 15:51:32 +00001
2/*--------------------------------------------------------------------*/
njnf11335a2009-05-20 04:09:38 +00003/*--- Syscall numbers and related operations. pub_tool_vkiscnums.h ---*/
sewardj4eee4762006-10-14 15:51:32 +00004/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
njn9f207462009-03-10 22:02:09 +000010 Copyright (C) 2005-2009 Nicholas Nethercote
sewardj4eee4762006-10-14 15:51:32 +000011 njn@valgrind.org
njn9f207462009-03-10 22:02:09 +000012 Copyright (C) 2006-2009 OpenWorks LLP
sewardj4eee4762006-10-14 15:51:32 +000013 info@open-works.co.uk
14
15 This program is free software; you can redistribute it and/or
16 modify it under the terms of the GNU General Public License as
17 published by the Free Software Foundation; either version 2 of the
18 License, or (at your option) any later version.
19
20 This program is distributed in the hope that it will be useful, but
21 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
28 02111-1307, USA.
29
30 The GNU General Public License is contained in the file COPYING.
31*/
32
sewardj4eee4762006-10-14 15:51:32 +000033#ifndef __PUB_TOOL_VKISCNUMS_H
34#define __PUB_TOOL_VKISCNUMS_H
35
njn1a1e95c2009-06-03 06:50:06 +000036#include "pub_tool_vkiscnums_asm.h"
sewardj9c606bd2008-09-18 18:12:50 +000037
sewardj9c606bd2008-09-18 18:12:50 +000038
njn1a1e95c2009-06-03 06:50:06 +000039// This converts a syscall number into a string, suitable for printing. It is
40// needed because some platforms (AIX, Darwin) munge sysnums in various ways.
41// It is used in places where the sycall name will be printed alongside.
42extern Char* VG_(sysnum_string) (Word sysnum, SizeT n_buf, Char* buf);
sewardj9c606bd2008-09-18 18:12:50 +000043
njn1a1e95c2009-06-03 06:50:06 +000044// This is like VG_(sysnum_string), but prints extra info if needed. It is
45// called in places where the syscall name will *not* be printed alongside.
46extern Char* VG_(sysnum_string_extra)(Word sysnum, SizeT n_buf, Char* buf);
sewardj9c606bd2008-09-18 18:12:50 +000047
njn1a1e95c2009-06-03 06:50:06 +000048// Macros that make the above functions easier to use by declaring a local
49// buffer.
50#define VG_SYSNUM_STRING(sysnum) \
51 ({ Char qq_zz_buf[32]; VG_(sysnum_string)(sysnum, 32, qq_zz_buf); })
52#define VG_SYSNUM_STRING_EXTRA(sysnum) \
53 ({ Char qq_zz_buf[64]; VG_(sysnum_string_extra)(sysnum, 64, qq_zz_buf); })
54
55
56#if defined(VGO_linux)
57 // Nothing.
58
59#elif defined(VGO_aix5)
60 // See the AIX5-specific case in pub_tool_vkiscnums_asm.h for an
61 // explanation of why we include this here rather than there.
sewardj4eee4762006-10-14 15:51:32 +000062# include "vki/vki-scnums-aix5.h"
sewardj9c606bd2008-09-18 18:12:50 +000063
njn1a1e95c2009-06-03 06:50:06 +000064#elif defined(VGO_darwin)
65 // Nothing.
njnf76d27a2009-05-28 01:53:07 +000066
sewardj4eee4762006-10-14 15:51:32 +000067#else
njn1a1e95c2009-06-03 06:50:06 +000068# error Unknown OS
sewardj4eee4762006-10-14 15:51:32 +000069#endif
70
71#endif // __PUB_TOOL_VKISCNUMS_H
72
73/*--------------------------------------------------------------------*/
74/*--- end ---*/
75/*--------------------------------------------------------------------*/