Home | History | Annotate | Download | only in include

Lines Matching refs:VG_

34 #include "pub_tool_basics.h"   // VG_ macro
42 extern HChar** VG_(client_envp);
44 /* Looks up VG_(client_envp) */
45 extern HChar* VG_(getenv) ( const HChar* name );
48 extern const HChar *VG_(libdir);
52 extern const HChar* VG_(LD_PRELOAD_var_name);
54 /* Resolves filename of VG_(cl_exec_fd) and copies it to the buffer.
58 extern void VG_(client_fname)(HChar *buffer, SizeT buf_size,
64 extern void VG_(client_cmd_and_args)(HChar *buffer, SizeT buf_size);
70 extern Int VG_(waitpid)( Int pid, Int *status, Int options );
71 extern Int VG_(system) ( const HChar* cmd );
72 extern Int VG_(spawn) ( const HChar *filename, const HChar **argv );
73 extern Int VG_(fork) ( void);
74 extern void VG_(execv) ( const HChar* filename, const HChar** argv );
75 extern Int VG_(sysctl) ( Int *name, UInt namelen, void *oldp, SizeT *oldlenp, void *newp, SizeT newlen );
81 extern Int VG_(getrlimit) ( Int resource, struct vki_rlimit *rlim );
82 extern Int VG_(setrlimit) ( Int resource, const struct vki_rlimit *rlim );
83 extern Int VG_(prctl) (Int option,
90 extern Int VG_(gettid) ( void );
91 extern Int VG_(getpid) ( void );
92 extern Int VG_(getppid) ( void );
93 extern Int VG_(getpgrp) ( void );
94 extern Int VG_(geteuid) ( void );
95 extern Int VG_(getegid) ( void );
104 extern UInt VG_(read_millisecond_timer) ( void );
105 extern Int VG_(gettimeofday)(struct vki_timeval *tv, struct vki_timezone *tz);
112 extern void VG_(atfork)(vg_atfork_t pre, vg_atfork_t parent, vg_atfork_t child);