blob: 84687b05562230a1330b0f5ebd47d8e1d7202685 [file] [log] [blame]
njneb8896b2005-06-04 20:03:55 +00001
2/*--------------------------------------------------------------------*/
3/*--- File/socket-related libc stuff. pub_core_libcfile.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
10 Copyright (C) 2000-2005 Julian Seward
11 jseward@acm.org
12
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
31#ifndef __PUB_CORE_LIBCFILE_H
32#define __PUB_CORE_LIBCFILE_H
33
34//--------------------------------------------------------------------
35// PURPOSE: This module contains all the libc code that relates to
36// files and sockets: opening, reading, writing, etc.
37//--------------------------------------------------------------------
38
39#include "pub_tool_libcfile.h"
40
njn63004dc2005-06-10 22:39:04 +000041/* Application-visible file descriptor limits */
42extern Int VG_(fd_soft_limit);
43extern Int VG_(fd_hard_limit);
44
njneb8896b2005-06-04 20:03:55 +000045/* Move an fd into the Valgrind-safe range */
njn327fe8a2005-06-12 02:49:35 +000046extern Int VG_(safe_fd) ( Int oldfd );
47extern Int VG_(fcntl) ( Int fd, Int cmd, Int arg );
njneb8896b2005-06-04 20:03:55 +000048
49extern Int VG_(write_socket)( Int sd, void *msg, Int count );
50extern Int VG_(connect_via_socket)( UChar* str );
51extern Int VG_(getsockname) ( Int sd, struct vki_sockaddr *name, Int *namelen );
52extern Int VG_(getpeername) ( Int sd, struct vki_sockaddr *name, Int *namelen );
53extern Int VG_(getsockopt) ( Int sd, Int level, Int optname, void *optval,
54 Int *optlen );
55
56#endif // __PUB_CORE_LIBCFILE_H
57
58/*--------------------------------------------------------------------*/
59/*--- end ---*/
60/*--------------------------------------------------------------------*/