From 751c4115658dfb2c6c35e077b6fc67611cf0899d Mon Sep 17 00:00:00 2001
From: patacongo
Date: Tue, 8 Jan 2013 16:25:30 +0000
Subject: [PATCH] Add execv() and execl(); Move lm3s header files for
compatibility
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5492 42af7a65-404d-4744-a932-0658087f49c3
---
Documentation/NuttxUserGuide.html | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html
index 5c76737e5a4..918b69d0fa5 100644
--- a/Documentation/NuttxUserGuide.html
+++ b/Documentation/NuttxUserGuide.html
@@ -202,6 +202,8 @@ paragraphs.
2.1.6 task_restart
2.1.7 getpid
2.1.8 vfork
+ 2.1.9 execv
+ 2.1.10 execl
@@ -648,6 +650,9 @@ pid_t vfork(void);
Compatible with the Unix interface of the same name.
+
+
+
|
@@ -6798,6 +6803,12 @@ FAR char *getcwd(FAR char *buf, size_t size);
int unlink(FAR const char *pathname);
int rmdir(FAR const char *pathname);
+
+#ifdef CONFIG_LIBC_EXECFUNCS
+int execl(FAR const char *path, ...);
+int execv(FAR const char *path, FAR char *const argv[]);
+#endif
+
int getopt(int argc, FAR char *const argv[], FAR const char *optstring);
@@ -8198,7 +8209,9 @@ notify a task when a message is available on a queue.
Driver operations
dup
dup2
+ execl
eXecute In Place (XIP)
+ execv
exit
FAT File System Support
fclose
@@ -8333,9 +8346,9 @@ notify a task when a message is available on a queue.
ROMFS
sched_getparam
sched_get_priority_max
+ sched_get_priority_min
|
- sched_get_priority_min
sched_get_rr_interval
sched_lockcount
sched_lock
|