ReactOS 0.4.16-dev-937-g7afcd2a
spawnl.cpp File Reference
#include <corecrt_internal.h>
#include <corecrt_internal_traits.h>
#include <stddef.h>
#include <process.h>
#include <stdarg.h>
Include dependency graph for spawnl.cpp:

Go to the source code of this file.

Functions

template<typename Character >
static intptr_t __cdecl common_spawnl (bool const pass_environment, int const mode, Character const *const file_name, Character const *const arguments, va_list varargs) throw ()
 
intptr_t __cdecl _execl (char const *const file_name, char const *const arguments,...)
 
intptr_t __cdecl _execle (char const *const file_name, char const *const arguments,...)
 
intptr_t __cdecl _spawnl (int const mode, char const *const file_name, char const *const arguments,...)
 
intptr_t __cdecl _spawnle (int const mode, char const *const file_name, char const *const arguments,...)
 
intptr_t __cdecl _wexecl (wchar_t const *const file_name, wchar_t const *const arguments,...)
 
intptr_t __cdecl _wexecle (wchar_t const *const file_name, wchar_t const *const arguments,...)
 
intptr_t __cdecl _wspawnl (int const mode, wchar_t const *const file_name, wchar_t const *const arguments,...)
 
intptr_t __cdecl _wspawnle (int const mode, wchar_t const *const file_name, wchar_t const *const arguments,...)
 

Function Documentation

◆ _execl()

intptr_t __cdecl _execl ( char const *const  file_name,
char const *const  arguments,
  ... 
)

Definition at line 55 of file spawnl.cpp.

60{
61 va_list varargs;
62 va_start(varargs, arguments);
63 return common_spawnl(false, _P_OVERLAY, file_name, arguments, varargs);
64}
char * va_list
Definition: acmsvcex.h:78
#define va_start(ap, A)
Definition: acmsvcex.h:91
static LPCWSTR file_name
Definition: protocol.c:147
#define _P_OVERLAY
Definition: port.h:372
static intptr_t __cdecl common_spawnl(bool const pass_environment, int const mode, Character const *const file_name, Character const *const arguments, va_list varargs)
Definition: spawnl.cpp:19

◆ _execle()

intptr_t __cdecl _execle ( char const *const  file_name,
char const *const  arguments,
  ... 
)

Definition at line 66 of file spawnl.cpp.

70{
71 va_list varargs;
72 va_start(varargs, arguments);
73 return common_spawnl(true, _P_OVERLAY, file_name, arguments, varargs);
74}

◆ _spawnl()

intptr_t __cdecl _spawnl ( int const  mode,
char const *const  file_name,
char const *const  arguments,
  ... 
)

Definition at line 76 of file spawnl.cpp.

82{
83 va_list varargs;
84 va_start(varargs, arguments);
85 return common_spawnl(false, mode, file_name, arguments, varargs);
86}
GLenum mode
Definition: glext.h:6217

◆ _spawnle()

intptr_t __cdecl _spawnle ( int const  mode,
char const *const  file_name,
char const *const  arguments,
  ... 
)

Definition at line 88 of file spawnl.cpp.

93{
94 va_list varargs;
95 va_start(varargs, arguments);
96 return common_spawnl(true, mode, file_name, arguments, varargs);
97}

◆ _wexecl()

intptr_t __cdecl _wexecl ( wchar_t const *const  file_name,
wchar_t const *const  arguments,
  ... 
)

Definition at line 101 of file spawnl.cpp.

106{
107 va_list varargs;
108 va_start(varargs, arguments);
109 return common_spawnl(false, _P_OVERLAY, file_name, arguments, varargs);
110}

◆ _wexecle()

intptr_t __cdecl _wexecle ( wchar_t const *const  file_name,
wchar_t const *const  arguments,
  ... 
)

Definition at line 112 of file spawnl.cpp.

116{
117 va_list varargs;
118 va_start(varargs, arguments);
119 return common_spawnl(true, _P_OVERLAY, file_name, arguments, varargs);
120}

◆ _wspawnl()

intptr_t __cdecl _wspawnl ( int const  mode,
wchar_t const *const  file_name,
wchar_t const *const  arguments,
  ... 
)

Definition at line 122 of file spawnl.cpp.

128{
129 va_list varargs;
130 va_start(varargs, arguments);
131 return common_spawnl(false, mode, file_name, arguments, varargs);
132}

◆ _wspawnle()

intptr_t __cdecl _wspawnle ( int const  mode,
wchar_t const *const  file_name,
wchar_t const *const  arguments,
  ... 
)

Definition at line 134 of file spawnl.cpp.

139{
140 va_list varargs;
141 va_start(varargs, arguments);
142 return common_spawnl(true, mode, file_name, arguments, varargs);
143}

◆ common_spawnl()

template<typename Character >
static intptr_t __cdecl common_spawnl ( bool const  pass_environment,
int const  mode,
Character const *const  file_name,
Character const *const  arguments,
va_list  varargs 
)
throw (
)
static

Definition at line 19 of file spawnl.cpp.

26{
27 typedef __crt_char_traits<Character> traits;
28
29 _VALIDATE_RETURN(file_name != nullptr, EINVAL, -1);
30 _VALIDATE_RETURN(file_name[0] != '\0', EINVAL, -1);
31 _VALIDATE_RETURN(arguments != nullptr, EINVAL, -1);
32 _VALIDATE_RETURN(arguments[0] != '\0', EINVAL, -1);
33
34 Character* arguments_buffer[64];
35 Character** const captured_arguments = traits::capture_argv(
36 &varargs,
37 arguments,
38 &arguments_buffer[0],
39 64);
40
41 _VALIDATE_RETURN_NOEXC(captured_arguments != nullptr, ENOMEM, -1);
42
43 __crt_unique_heap_ptr<Character*> const captured_arguments_cleanup(
44 captured_arguments == arguments_buffer ? nullptr : captured_arguments);
45
46 Character const* const* const environment = pass_environment
47 ? va_arg(varargs, Character const* const*)
48 : nullptr;
49
50 return traits::tspawnve(mode, file_name, captured_arguments, environment);
51}
#define EINVAL
Definition: acclib.h:90
#define ENOMEM
Definition: acclib.h:84
#define va_arg(ap, T)
Definition: acmsvcex.h:89
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
return nullptr
Definition: expand.cpp:78
#define _VALIDATE_RETURN_NOEXC(expr, errorcode, retexpr)

Referenced by _execl(), _execle(), _spawnl(), _spawnle(), _wexecl(), _wexecle(), _wspawnl(), and _wspawnle().