aboutsummaryrefslogtreecommitdiffstats
path: root/ports/common/guts
diff options
context:
space:
mode:
Diffstat (limited to 'ports/common/guts')
-rw-r--r--ports/common/guts/execl.c5
-rw-r--r--ports/common/guts/execle.c5
-rw-r--r--ports/common/guts/execlp.c5
3 files changed, 15 insertions, 0 deletions
diff --git a/ports/common/guts/execl.c b/ports/common/guts/execl.c
index ce908ed..be86b49 100644
--- a/ports/common/guts/execl.c
+++ b/ports/common/guts/execl.c
@@ -6,6 +6,11 @@
* int rc = -1;
*/
+ /* NOTE THAT THIS IS NEVER USED!
+ * We implement all execl() in terms of execv()
+ * so this call is not used.
+ */
+
rc = real_execl(file, arg, ap);
/* return rc;
diff --git a/ports/common/guts/execle.c b/ports/common/guts/execle.c
index 68d8bba..a3bc3ca 100644
--- a/ports/common/guts/execle.c
+++ b/ports/common/guts/execle.c
@@ -6,6 +6,11 @@
* int rc = -1;
*/
+ /* NOTE THAT THIS IS NEVER USED!
+ * We implement all execl() in terms of execv()
+ * so this call is not used.
+ */
+
rc = real_execle(file, arg, ap);
/* return rc;
diff --git a/ports/common/guts/execlp.c b/ports/common/guts/execlp.c
index d357986..3cf2889 100644
--- a/ports/common/guts/execlp.c
+++ b/ports/common/guts/execlp.c
@@ -6,6 +6,11 @@
* int rc = -1;
*/
+ /* NOTE THAT THIS IS NEVER USED!
+ * We implement all execl() in terms of execv()
+ * so this call is not used.
+ */
+
rc = real_execlp(file, arg, ap);
/* return rc;