summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-07-12 18:43:59 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-07-12 18:43:59 +0000
commit5b17ece930357c52595d264f30a6ff87561df443 (patch)
tree339894a7958f29c77ac9aff63a973fc3121c1d5d /nuttx/ChangeLog
parentd705291ceef2d2d02a74c6ca33fd07f72171114f (diff)
downloadpx4-nuttx-5b17ece930357c52595d264f30a6ff87561df443.tar.gz
px4-nuttx-5b17ece930357c52595d264f30a6ff87561df443.tar.bz2
px4-nuttx-5b17ece930357c52595d264f30a6ff87561df443.zip
Added exec()
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1979 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog9
1 files changed, 5 insertions, 4 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 46ed65e94..9e2b42602 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -810,8 +810,9 @@
typical embeddd system.
* sched/: Added gettimeofday(). This implementation is simply a thin
wrapper around clock_gettimer().
- * lib/: Add gmtime() and localtime()
-
-
-
+ * lib/: Add gmtime(), localtime(), and strftime()
+ * binfmt/: Add exec(). This is just a wrapper that executes both
+ load_ and exec_module() in a more familiar manner. It is not consistent
+ with more standard exec() functions, however, because (1) it returns
+ and (2) it requires symbol table arguments.