From 7e0f021a9aec35fd8e6725e87e3313b101d26f5e Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sun, 27 Jan 2008 11:37:44 +0100 Subject: Initial import (2.0.2-6) --- reference/C/FUNCTIONS/execl.html | 67 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 reference/C/FUNCTIONS/execl.html (limited to 'reference/C/FUNCTIONS/execl.html') diff --git a/reference/C/FUNCTIONS/execl.html b/reference/C/FUNCTIONS/execl.html new file mode 100644 index 0000000..4f70f63 --- /dev/null +++ b/reference/C/FUNCTIONS/execl.html @@ -0,0 +1,67 @@ +execl family of functions + + + + +
+
+

execl family of functions

+
+
+execl execlp execle exect execv execvp all performa a simular +function by starting another program. This new program overlays +the existing program, so you can never return to the to original +code unless the call to execl fails. +

+


+
+	Library:   unistd.h
+
+	Prototype: int execl(char *Path, char *arg, (char *)0);
+
+	Syntax:    execl("newprog", "newprog", NULL);
+
+
+
+

Examples:

+ + + example program issuing the execl. +

+ + + The program started by the example above + +


+

See Also:

+ + +fork function.

+ + +

+ +


+

+

+ + + + +
+ Top + + Master Index + + Keywords + + Functions +
+
+

+


+
Martin Leslie +

+ + -- cgit v1.2.3-54-g00ecf