Skip to content

Latest commit

 

History

History
94 lines (72 loc) · 3.65 KB

execle-wexecle.md

File metadata and controls

94 lines (72 loc) · 3.65 KB
description title ms.date api_name api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: _execle, _wexecle
_execle, _wexecle
11/04/2016
_execle
_wexecle
msvcrt.dll
msvcr80.dll
msvcr90.dll
msvcr100.dll
msvcr100_clr0400.dll
msvcr110.dll
msvcr110_clr0400.dll
msvcr120.dll
msvcr120_clr0400.dll
ucrtbase.dll
api-ms-win-crt-process-l1-1-0.dll
DLLExport
apiref
wexecle
_execle
_wexecle
wexecle function
execle function
_wexecle function
_execle function
75efa9c5-96b7-4e23-acab-06258901f63a

_execle, _wexecle

Loads and executes new child processes.

Important

This API cannot be used in applications that execute in the Windows Runtime. For more information, see CRT functions not supported in Universal Windows Platform apps.

Syntax

intptr_t _execle(
   const char *cmdname,
   const char *arg0,
   ... const char *argn,
   NULL,
   const char *const *envp
);
intptr_t _wexecle(
   const wchar_t *cmdname,
   const wchar_t *arg0,
   ... const wchar_t *argn,
   NULL,
   const char *const *envp
);

Parameters

cmdname
Path of the file to execute.

arg0, ... argN
List of pointers to parameters.

envp
Array of pointers to environment settings.

Return value

If successful, these functions don't return to the calling process. A return value of -1 indicates an error, in which case the errno global variable is set.

errno value Description
E2BIG The space that's required for the arguments and the environment settings exceeds 32 KB.
EACCES The specified file has a locking or sharing violation.
EINVAL Invalid parameter.
EMFILE Too many files are open. (The specified file must be opened to determine whether it's executable.)
ENOENT The file or path isn't found.
ENOEXEC The specified file isn't executable or has an invalid executable-file format.
ENOMEM Not enough memory is available to execute the new process; the available memory has been corrupted; or an invalid block exists, which indicates that the calling process wasn't allocated correctly.

For more information about these return codes, see errno, _doserrno, _sys_errlist, and _sys_nerr.

Remarks

Each of these functions loads and executes a new process, and passes each command-line argument as a separate parameter and passes an array of pointers to environment settings.

The _execle functions validate their parameters. If cmdname or arg0 is a null pointer or an empty string, these functions invoke the invalid parameter handler, as described in Parameter validation. If execution is allowed to continue, these functions set errno to EINVAL and return -1. No new process is launched.

Requirements

Function Required header Optional header
_execle <process.h> <errno.h>
_wexecle <process.h> or <wchar.h> <errno.h>

For more information, see Compatibility.

Example

See the example in _exec, _wexec functions.

See also

Process and environment control
_exec, _wexec functions
abort
atexit
exit, _Exit, _exit
_onexit, _onexit_m
_spawn, _wspawn functions
system, _wsystem