annotate liboctave/system/oct-syscalls.cc @ 30826:243b51ec9ff0 stable

Remove `time_t` from API (bug #61821). The bit-width of `time_t` might change depending on compile time switches. That can cause a mismatch between class declarations in public headers and the actual alignment of the compiled classes. Avoid that problem by not using `time_t` in (public) headers. * build-aux/mk-octave-config-h.sh, oct-conf-post.in.h: Define OCTAVE_TIME_T to `int64_t`. The type of `time_t` is not defined in the C/C++ standards. However in all(?) implementations, it's either a signed 32-bit or a signed 64-bit integer. Use a signed 64-bit integer for storing those values in Octave classes. * other files: Use OCTAVE_TIME_T instead of `time_t`. Don't include <ctime> in files where it's not needed.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 26 Feb 2022 13:46:48 +0100
parents 796f54d4ddbf
children e88a07dec498
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
1 ////////////////////////////////////////////////////////////////////////
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
2 //
30564
796f54d4ddbf update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
3 // Copyright (C) 1996-2022 The Octave Project Developers
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
4 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
5 // See the file COPYRIGHT.md in the top-level directory of this
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
6 // distribution or <https://octave.org/copyright/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
7 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
8 // This file is part of Octave.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
9 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
10 // Octave is free software: you can redistribute it and/or modify it
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
11 // under the terms of the GNU General Public License as published by
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
12 // the Free Software Foundation, either version 3 of the License, or
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
13 // (at your option) any later version.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
14 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
15 // Octave is distributed in the hope that it will be useful, but
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
18 // GNU General Public License for more details.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
19 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
20 // You should have received a copy of the GNU General Public License
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
21 // along with Octave; see the file COPYING. If not, see
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
22 // <https://www.gnu.org/licenses/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
23 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
24 ////////////////////////////////////////////////////////////////////////
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
25
21724
aba2e6293dd8 use "#if ..." consistently instead of "#ifdef" and "#ifndef"
John W. Eaton <jwe@octave.org>
parents: 21609
diff changeset
26 #if defined (HAVE_CONFIG_H)
21301
40de9f8f23a6 Use '#include "config.h"' rather than <config.h>.
Rik <rik@octave.org>
parents: 21213
diff changeset
27 # include "config.h"
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
28 #endif
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
29
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
30 #include <cerrno>
6482
7e958a1532c6 [project @ 2007-04-04 02:37:07 by jwe]
jwe
parents: 6321
diff changeset
31 #include <cstdlib>
21912
d92dcbcd7691 prefer C++ wrappers for C standard headers in C++ code
John W. Eaton <jwe@octave.org>
parents: 21911
diff changeset
32 #include <cstring>
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
33
21911
c66c156e1d1d hide fcntl.h header
John W. Eaton <jwe@octave.org>
parents: 21910
diff changeset
34 #include "fcntl-wrappers.h"
5453
89f5979e8552 [project @ 2005-09-17 00:50:58 by jwe]
jwe
parents: 5307
diff changeset
35 #include "lo-utils.h"
6321
363a2f8c9e97 [project @ 2007-02-16 20:26:23 by dbateman]
dbateman
parents: 6123
diff changeset
36 #include "lo-sysdep.h"
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
37 #include "oct-syscalls.h"
21911
c66c156e1d1d hide fcntl.h header
John W. Eaton <jwe@octave.org>
parents: 21910
diff changeset
38 #include "octave-popen2.h"
21940
70824a0dd009 provide wrapper for kill
John W. Eaton <jwe@octave.org>
parents: 21939
diff changeset
39 #include "signal-wrappers.h"
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
40 #include "str-vec.h"
21910
4d723ba06b4a provide wrappers for some unistd.h functions
John W. Eaton <jwe@octave.org>
parents: 21828
diff changeset
41 #include "unistd-wrappers.h"
21921
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
42 #include "wait-wrappers.h"
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
43
22197
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22087
diff changeset
44 #define NOT_SUPPORTED(nm) \
4062
86e4baa81410 [project @ 2002-09-23 15:38:05 by jwe]
jwe
parents: 3504
diff changeset
45 nm ": not supported on this system"
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
46
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
47 namespace octave
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
48 {
21734
11af9c03400c write namespace keyword and name on same line in C++ files
John W. Eaton <jwe@octave.org>
parents: 21727
diff changeset
49 namespace sys
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
50 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
51 int
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
52 dup2 (int old_fd, int new_fd)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
53 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
54 std::string msg;
23696
08036a7f3660 remove octave:: namespace tag from symbols used inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
55 return sys::dup2 (old_fd, new_fd, msg);
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
56 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
57
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
58 int
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
59 dup2 (int old_fd, int new_fd, std::string& msg)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
60 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
61 msg = "";
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
62
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
63 int status = -1;
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
64
21910
4d723ba06b4a provide wrappers for some unistd.h functions
John W. Eaton <jwe@octave.org>
parents: 21828
diff changeset
65 status = octave_dup2_wrapper (old_fd, new_fd);
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
66
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
67 if (status < 0)
21942
aab79a1885cc limit gnulib headers to liboctave/wrappers directory
John W. Eaton <jwe@octave.org>
parents: 21940
diff changeset
68 msg = std::strerror (errno);
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
69
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
70 return status;
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
71 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
72
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
73 int
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
74 execvp (const std::string& file, const string_vector& argv)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
75 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
76 std::string msg;
23696
08036a7f3660 remove octave:: namespace tag from symbols used inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
77 return sys::execvp (file, argv, msg);
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
78 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
79
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
80 int
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
81 execvp (const std::string& file, const string_vector& args,
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
82 std::string& msg)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
83 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
84 msg = "";
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
85
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
86 char **argv = args.c_str_vec ();
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
87
21910
4d723ba06b4a provide wrappers for some unistd.h functions
John W. Eaton <jwe@octave.org>
parents: 21828
diff changeset
88 int status = octave_execvp_wrapper (file.c_str (), argv);
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
89
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
90 string_vector::delete_c_str_vec (argv);
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
91
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
92 if (status < 0)
21942
aab79a1885cc limit gnulib headers to liboctave/wrappers directory
John W. Eaton <jwe@octave.org>
parents: 21940
diff changeset
93 msg = std::strerror (errno);
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
94
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
95 return status;
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
96 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
97
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
98 pid_t
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
99 fork (std::string& msg)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
100 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
101 pid_t status = -1;
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
102
21939
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
103 if (octave_have_fork ())
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
104 {
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
105 status = octave_fork_wrapper ();
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
106
21939
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
107 if (status < 0)
21942
aab79a1885cc limit gnulib headers to liboctave/wrappers directory
John W. Eaton <jwe@octave.org>
parents: 21940
diff changeset
108 msg = std::strerror (errno);
21939
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
109 }
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
110 else
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
111 msg = NOT_SUPPORTED ("fork");
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
112
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
113 return status;
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
114 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
115
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
116 pid_t
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
117 vfork (std::string& msg)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
118 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
119 pid_t status = -1;
3147
894d516b4a00 [project @ 1998-02-06 06:00:08 by jwe]
jwe
parents: 2941
diff changeset
120
21939
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
121 if (octave_have_vfork () || octave_have_fork ())
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
122 {
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
123 if (octave_have_vfork ())
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
124 status = octave_vfork_wrapper ();
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
125 else
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
126 status = octave_fork_wrapper ();
3147
894d516b4a00 [project @ 1998-02-06 06:00:08 by jwe]
jwe
parents: 2941
diff changeset
127
21939
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
128 if (status < 0)
21942
aab79a1885cc limit gnulib headers to liboctave/wrappers directory
John W. Eaton <jwe@octave.org>
parents: 21940
diff changeset
129 msg = std::strerror (errno);
21939
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
130 }
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
131 else
034b15e9c262 hide some preprocessor macros in wrapper functions
John W. Eaton <jwe@octave.org>
parents: 21921
diff changeset
132 msg = NOT_SUPPORTED ("vfork");
3147
894d516b4a00 [project @ 1998-02-06 06:00:08 by jwe]
jwe
parents: 2941
diff changeset
133
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
134 return status;
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
135 }
3147
894d516b4a00 [project @ 1998-02-06 06:00:08 by jwe]
jwe
parents: 2941
diff changeset
136
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
137 pid_t
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
138 getpgrp (std::string& msg)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
139 {
21910
4d723ba06b4a provide wrappers for some unistd.h functions
John W. Eaton <jwe@octave.org>
parents: 21828
diff changeset
140 pid_t status = octave_getpgrp_wrapper ();
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
141
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
142 if (status < 0)
21942
aab79a1885cc limit gnulib headers to liboctave/wrappers directory
John W. Eaton <jwe@octave.org>
parents: 21940
diff changeset
143 msg = std::strerror (errno);
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
144
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
145 return status;
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
146 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
147
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
148 pid_t
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
149 getpid (void)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
150 {
21910
4d723ba06b4a provide wrappers for some unistd.h functions
John W. Eaton <jwe@octave.org>
parents: 21828
diff changeset
151 return octave_getpid_wrapper ();
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
152 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
153
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
154 pid_t
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
155 getppid (void)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
156 {
21910
4d723ba06b4a provide wrappers for some unistd.h functions
John W. Eaton <jwe@octave.org>
parents: 21828
diff changeset
157 return octave_getppid_wrapper ();
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
158 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
159
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
160 gid_t
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
161 getgid (void)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
162 {
21910
4d723ba06b4a provide wrappers for some unistd.h functions
John W. Eaton <jwe@octave.org>
parents: 21828
diff changeset
163 return octave_getgid_wrapper ();
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
164 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
165
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
166 gid_t
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
167 getegid (void)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
168 {
21910
4d723ba06b4a provide wrappers for some unistd.h functions
John W. Eaton <jwe@octave.org>
parents: 21828
diff changeset
169 return octave_getegid_wrapper ();
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
170 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
171
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
172 uid_t
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
173 getuid (void)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
174 {
21910
4d723ba06b4a provide wrappers for some unistd.h functions
John W. Eaton <jwe@octave.org>
parents: 21828
diff changeset
175 return octave_getuid_wrapper ();
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
176 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
177
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
178 uid_t
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
179 geteuid (void)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
180 {
21910
4d723ba06b4a provide wrappers for some unistd.h functions
John W. Eaton <jwe@octave.org>
parents: 21828
diff changeset
181 return octave_geteuid_wrapper ();
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
182 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
183
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
184 int
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
185 pipe (int *fildes)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
186 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
187 std::string msg;
23696
08036a7f3660 remove octave:: namespace tag from symbols used inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
188 return sys::pipe (fildes, msg);
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
189 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
190
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
191 int
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
192 pipe (int *fildes, std::string& msg)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
193 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
194 msg = "";
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
195
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
196 int status = -1;
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
197
21910
4d723ba06b4a provide wrappers for some unistd.h functions
John W. Eaton <jwe@octave.org>
parents: 21828
diff changeset
198 status = octave_pipe_wrapper (fildes);
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
199
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
200 if (status < 0)
21942
aab79a1885cc limit gnulib headers to liboctave/wrappers directory
John W. Eaton <jwe@octave.org>
parents: 21940
diff changeset
201 msg = std::strerror (errno);
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
202
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
203 return status;
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
204 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
205
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
206 pid_t
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
207 waitpid (pid_t pid, int *status, int options)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
208 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
209 std::string msg;
23696
08036a7f3660 remove octave:: namespace tag from symbols used inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
210 return sys::waitpid (pid, status, options, msg);
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
211 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
212
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
213 pid_t
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
214 waitpid (pid_t pid, int *status, int options,
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
215 std::string& msg)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
216 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
217 pid_t retval = -1;
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
218 msg = "";
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
219
21921
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
220 retval = octave_waitpid_wrapper (pid, status, options);
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
221
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
222 if (retval < 0)
21942
aab79a1885cc limit gnulib headers to liboctave/wrappers directory
John W. Eaton <jwe@octave.org>
parents: 21940
diff changeset
223 msg = std::strerror (errno);
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
224
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
225 return retval;
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
226 }
2941
b779a5b8aed4 [project @ 1997-05-08 02:14:34 by jwe]
jwe
parents:
diff changeset
227
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
228 int
21921
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
229 wcontinue (void)
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
230 {
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
231 return octave_wcontinue_wrapper ();
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
232 }
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
233
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
234 int
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
235 wcoredump (int status)
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
236 {
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
237 return octave_wcoredump_wrapper (status);
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
238 }
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
239
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
240 bool
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
241 wifcontinued (int status)
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
242 {
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
243 return octave_wifcontinued_wrapper (status);
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
244 }
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
245
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
246 bool
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
247 wifexited (int status)
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
248 {
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
249 return octave_wifexited_wrapper (status);
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
250 }
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
251
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
252 bool
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
253 wifsignaled (int status)
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
254 {
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
255 return octave_wifsignaled_wrapper (status);
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
256 }
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
257
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
258 bool
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
259 wifstopped (int status)
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
260 {
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
261 return octave_wifstopped_wrapper (status);
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
262 }
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
263
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
264 int
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
265 wexitstatus (int status)
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
266 {
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
267 return octave_wexitstatus_wrapper (status);
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
268 }
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
269
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
270 int
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
271 wnohang (void)
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
272 {
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
273 return octave_wnohang_wrapper ();
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
274 }
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
275
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
276 int
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
277 wstopsig (int status)
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
278 {
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
279 return octave_wstopsig_wrapper (status);
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
280 }
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
281
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
282 int
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
283 wtermsig (int status)
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
284 {
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
285 return octave_wtermsig_wrapper (status);
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
286 }
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
287
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
288 int
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
289 wuntraced (void)
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
290 {
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
291 return octave_wuntraced_wrapper ();
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
292 }
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
293
ecfcc8527661 hide sys/wait.h header and provide wrappers for waitpid macros
John W. Eaton <jwe@octave.org>
parents: 21912
diff changeset
294 int
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
295 kill (pid_t pid, int sig)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
296 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
297 std::string msg;
23696
08036a7f3660 remove octave:: namespace tag from symbols used inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
298 return sys::kill (pid, sig, msg);
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
299 }
4294
755f6509bb01 [project @ 2003-01-11 04:01:53 by jwe]
jwe
parents: 4062
diff changeset
300
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
301 int
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
302 kill (pid_t pid, int sig, std::string& msg)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
303 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
304 msg = "";
4294
755f6509bb01 [project @ 2003-01-11 04:01:53 by jwe]
jwe
parents: 4062
diff changeset
305
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
306 int status = -1;
4294
755f6509bb01 [project @ 2003-01-11 04:01:53 by jwe]
jwe
parents: 4062
diff changeset
307
21940
70824a0dd009 provide wrapper for kill
John W. Eaton <jwe@octave.org>
parents: 21939
diff changeset
308 if (octave_have_kill ())
70824a0dd009 provide wrapper for kill
John W. Eaton <jwe@octave.org>
parents: 21939
diff changeset
309 {
70824a0dd009 provide wrapper for kill
John W. Eaton <jwe@octave.org>
parents: 21939
diff changeset
310 status = octave_kill_wrapper (pid, sig);
4294
755f6509bb01 [project @ 2003-01-11 04:01:53 by jwe]
jwe
parents: 4062
diff changeset
311
21940
70824a0dd009 provide wrapper for kill
John W. Eaton <jwe@octave.org>
parents: 21939
diff changeset
312 if (status < 0)
21942
aab79a1885cc limit gnulib headers to liboctave/wrappers directory
John W. Eaton <jwe@octave.org>
parents: 21940
diff changeset
313 msg = std::strerror (errno);
21940
70824a0dd009 provide wrapper for kill
John W. Eaton <jwe@octave.org>
parents: 21939
diff changeset
314 }
70824a0dd009 provide wrapper for kill
John W. Eaton <jwe@octave.org>
parents: 21939
diff changeset
315 else
70824a0dd009 provide wrapper for kill
John W. Eaton <jwe@octave.org>
parents: 21939
diff changeset
316 msg = NOT_SUPPORTED ("kill");
4294
755f6509bb01 [project @ 2003-01-11 04:01:53 by jwe]
jwe
parents: 4062
diff changeset
317
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
318 return status;
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
319 }
4294
755f6509bb01 [project @ 2003-01-11 04:01:53 by jwe]
jwe
parents: 4062
diff changeset
320
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
321 pid_t
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
322 popen2 (const std::string& cmd, const string_vector& args,
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
323 bool sync_mode, int *fildes)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
324 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
325 std::string msg;
23696
08036a7f3660 remove octave:: namespace tag from symbols used inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
326 return sys::popen2 (cmd, args, sync_mode, fildes, msg);
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
327 }
6321
363a2f8c9e97 [project @ 2007-02-16 20:26:23 by dbateman]
dbateman
parents: 6123
diff changeset
328
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
329 pid_t
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
330 popen2 (const std::string& cmd, const string_vector& args,
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
331 bool sync_mode, int *fildes, std::string& msg)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
332 {
21949
baeffde5c87d fix build for Windows systems
John W. Eaton <jwe@octave.org>
parents: 21942
diff changeset
333 char **argv = args.c_str_vec ();
baeffde5c87d fix build for Windows systems
John W. Eaton <jwe@octave.org>
parents: 21942
diff changeset
334 const char *errmsg;
21911
c66c156e1d1d hide fcntl.h header
John W. Eaton <jwe@octave.org>
parents: 21910
diff changeset
335
21949
baeffde5c87d fix build for Windows systems
John W. Eaton <jwe@octave.org>
parents: 21942
diff changeset
336 pid_t pid = octave_popen2 (cmd.c_str (), argv, sync_mode, fildes,
baeffde5c87d fix build for Windows systems
John W. Eaton <jwe@octave.org>
parents: 21942
diff changeset
337 &errmsg);
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
338
21911
c66c156e1d1d hide fcntl.h header
John W. Eaton <jwe@octave.org>
parents: 21910
diff changeset
339 string_vector::delete_c_str_vec (argv);
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
340
21911
c66c156e1d1d hide fcntl.h header
John W. Eaton <jwe@octave.org>
parents: 21910
diff changeset
341 if (pid < 0)
21949
baeffde5c87d fix build for Windows systems
John W. Eaton <jwe@octave.org>
parents: 21942
diff changeset
342 msg = errmsg;
10411
479cc8a0a846 use gnulib namespace
John W. Eaton <jwe@octave.org>
parents: 10314
diff changeset
343
21911
c66c156e1d1d hide fcntl.h header
John W. Eaton <jwe@octave.org>
parents: 21910
diff changeset
344 return pid;
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
345 }
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
346
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
347 int
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
348 fcntl (int fd, int cmd, long arg)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
349 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
350 std::string msg;
23696
08036a7f3660 remove octave:: namespace tag from symbols used inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
351 return sys::fcntl (fd, cmd, arg, msg);
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
352 }
10259
65b41bc71f09 use gnulib fcntl module
John W. Eaton <jwe@octave.org>
parents: 10182
diff changeset
353
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
354 int
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
355 fcntl (int fd, int cmd, long arg, std::string& msg)
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
356 {
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
357 msg = "";
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
358
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
359 int status = -1;
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
360
21911
c66c156e1d1d hide fcntl.h header
John W. Eaton <jwe@octave.org>
parents: 21910
diff changeset
361 status = octave_fcntl_wrapper (fd, cmd, arg);
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
362
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
363 if (status < 0)
21942
aab79a1885cc limit gnulib headers to liboctave/wrappers directory
John W. Eaton <jwe@octave.org>
parents: 21940
diff changeset
364 msg = std::strerror (errno);
21609
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
365
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
366 return status;
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
367 }
46f059de4dce use namespace instead of struct with static members for system call wrappers
John W. Eaton <jwe@octave.org>
parents: 21591
diff changeset
368 }
10259
65b41bc71f09 use gnulib fcntl module
John W. Eaton <jwe@octave.org>
parents: 10182
diff changeset
369 }