equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 /** |
|
21 @file |
|
22 @publishedAll |
|
23 @released |
|
24 */ |
|
25 |
|
26 #ifndef __PROCESS_H_ |
|
27 #define __PROCESS_H_ |
|
28 |
|
29 #ifdef __cplusplus |
|
30 extern "C" { |
|
31 #endif |
|
32 |
|
33 extern int execl(const char *path, const char *argv0, ...); |
|
34 extern int execle(const char *path, const char *argv0, ... /*, char * const *envp */); |
|
35 extern int execlp(const char *path, const char *argv0, ...); |
|
36 extern int execlpe(const char *path, const char *argv0, ... /*, char * const *envp */); |
|
37 |
|
38 extern int execv(const char *path, char * const *argv); |
|
39 extern int execve(const char *path, char * const *argv, char * const *envp); |
|
40 extern int execvp(const char *path, char * const *argv); |
|
41 extern int execvpe(const char *path, char * const *argv, char * const *envp); |
|
42 |
|
43 |
|
44 #ifdef __cplusplus |
|
45 } |
|
46 #endif |
|
47 |
|
48 #endif |
|
49 |
|
50 |