blocxx
WaitpidThreadFixFwd.hpp
Go to the documentation of this file.
1/*******************************************************************************
2* Copyright (C) 2005, Quest Software, Inc. All rights reserved.
3* Copyright (C) 2006, Novell, Inc. All rights reserved.
4*
5* Redistribution and use in source and binary forms, with or without
6* modification, are permitted provided that the following conditions are met:
7*
8* * Redistributions of source code must retain the above copyright notice,
9* this list of conditions and the following disclaimer.
10* * Redistributions in binary form must reproduce the above copyright
11* notice, this list of conditions and the following disclaimer in the
12* documentation and/or other materials provided with the distribution.
13* * Neither the name of
14* Quest Software, Inc.,
15* nor Novell, Inc.,
16* nor the names of its contributors or employees may be used to
17* endorse or promote products derived from this software without
18* specific prior written permission.
19*
20* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30* POSSIBILITY OF SUCH DAMAGE.
31*******************************************************************************/
32
33
37
38#ifndef BLOCXX_EXECIMPL_HPP_INCLUDE_GUARD_2006AUG25
39#define BLOCXX_EXECIMPL_HPP_INCLUDE_GUARD_2006AUG25
40#include "blocxx/BLOCXX_config.h"
41#include "blocxx/Process.hpp"
42#include "blocxx/Exec.hpp"
43#include "blocxx/Cstr.hpp"
44
45
46namespace BLOCXX_NAMESPACE
47{
49
50 namespace Exec
51 {
53 char const * exec_path,
54 char const * const argv[], char const * const envp[],
55 PreExec & pre_exec
56 );
57
69 template <typename S, typename SA1, typename SA2>
71 S const & exec_path, SA1 const & argv, SA2 const & envp,
72 PreExec & pre_exec
73 )
74 {
75 Cstr::CstrArr<SA1> sa_argv(argv);
76 Cstr::CstrArr<SA2> sa_envp(envp);
77 char const * s_exec_path = Cstr::to_char_ptr(exec_path);
78 return spawnImpl(s_exec_path, sa_argv.sarr, sa_envp.sarr, pre_exec);
79 }
80
82 //
84 char const * const argv[], char const * const envp[]
85 );
86
94 template <typename SA1, typename SA2>
96 SA1 const & argv, SA2 const & envp
97 )
98 {
99 Cstr::CstrArr<SA1> sa_argv(argv);
100 Cstr::CstrArr<SA2> sa_envp(envp);
101 return spawnImpl(sa_argv.sarr, sa_envp.sarr);
102 }
103
104 template <typename SA1>
106 SA1 const & argv
107 )
108 {
110 }
111
112 } // end namespace Exec
113
114} // end namespace BLOCXX_NAMESPACE
115
116
117#endif // BLOCXX_EXECIMPL_HPP_INCLUDE_GUARD_2006AUG25
This class is used to specify what spawn() should do between fork and exec.
Definition Exec.hpp:106
Portable process status.
Definition Process.hpp:123
char const * to_char_ptr(S const &s)
Definition Cstr.hpp:111
ProcessRef spawnImpl(char const *exec_path, char const *const argv[], char const *const envp[], PreExec &pre_exec)
Definition Exec.cpp:119
static char const *const *const currentEnvironment
Intended to be used as a parameter to spawn() to indicate that the current environment will be used f...
Definition Exec.hpp:205
Taken from RFC 1321.
Process::Status pollStatusImpl(ProcId pid)
Definition Process.cpp:637
IntrusiveReference< Process > ProcessRef
Class for converting values of type S into char const * const *.
Definition Cstr.hpp:131
char const *const * sarr
Converted value.
Definition Cstr.hpp:133