2941
|
1 /* |
|
2 |
|
3 Copyright (C) 1996, 1997 John W. Eaton |
|
4 |
|
5 This file is part of Octave. |
|
6 |
|
7 Octave is free software; you can redistribute it and/or modify it |
|
8 under the terms of the GNU General Public License as published by the |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
11 |
|
12 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 for more details. |
|
16 |
|
17 You should have received a copy of the GNU General Public License |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
20 |
|
21 */ |
|
22 |
|
23 #if !defined (octave_syscalls_h) |
|
24 #define octave_syscalls_h 1 |
|
25 |
|
26 #include <string> |
|
27 |
|
28 class string_vector; |
|
29 |
|
30 #ifdef HAVE_SYS_TYPES_H |
|
31 #include <sys/types.h> |
|
32 #endif |
|
33 |
|
34 struct |
|
35 octave_syscalls |
|
36 { |
|
37 static int dup2 (int, int); |
|
38 static int dup2 (int, int, string&); |
|
39 |
|
40 static int execvp (const string&, const string_vector&); |
|
41 static int execvp (const string&, const string_vector&, string&); |
|
42 |
|
43 static int fcntl (int, int, long); |
|
44 static int fcntl (int, int, long, string&); |
|
45 |
|
46 static pid_t fork (string&); |
3147
|
47 static pid_t vfork (string&); |
2941
|
48 |
|
49 static pid_t getpgrp (string&); |
|
50 |
|
51 static pid_t getpid (void); |
|
52 static pid_t getppid (void); |
|
53 |
|
54 static gid_t getgid (void); |
|
55 static gid_t getegid (void); |
|
56 |
|
57 static uid_t getuid (void); |
|
58 static uid_t geteuid (void); |
|
59 |
|
60 static int pipe (int *); |
|
61 static int pipe (int *, string&); |
|
62 |
|
63 static pid_t waitpid (pid_t, int); |
|
64 static pid_t waitpid (pid_t, int, string&); |
|
65 }; |
|
66 |
|
67 #endif |
|
68 |
|
69 /* |
|
70 ;;; Local Variables: *** |
|
71 ;;; mode: C++ *** |
|
72 ;;; End: *** |
|
73 */ |