summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-20 18:22:21 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-20 18:22:21 +0000
commitfce497aecaf6826d6fec3cfcb761abeac7fe72bf (patch)
tree6d2f0d4610067c2b0e4c3f831274037c9ceba91a /nuttx/ChangeLog
parent3d7ed16eabcbea16723b66df2cd2a7d10ba22474 (diff)
downloadpx4-nuttx-fce497aecaf6826d6fec3cfcb761abeac7fe72bf.tar.gz
px4-nuttx-fce497aecaf6826d6fec3cfcb761abeac7fe72bf.tar.bz2
px4-nuttx-fce497aecaf6826d6fec3cfcb761abeac7fe72bf.zip
Change prototypes of up_create_stack and up_release_stack to include a task type parameter
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5765 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog12
1 files changed, 10 insertions, 2 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 6baf9f235..b0d3f904e 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -4392,6 +4392,14 @@
* fs/fat: Create an error in FAT file creation. The FAT logic was
not making a distinction between directory non-existence and file
non-existence so when it you try to create a file in a non-existent
- directory, it would create a file with the nameof the missing
- directory. Reported by Andrew Tridgell.
+ directory, it would create a file with the name of the missing
+ directory. Reported by Andrew Tridgell (2013-03-30).
+ * Numerous files: Changed the protoypes of up_create_stack() and
+ up_release_stack() so that is includes a task type. Normally you
+ can get this type from the TCB parameter, but there are certain
+ conditions when the task type is not valid in the TCB when these
+ functions are called. Only the prototypes were changed on this
+ big, initial checkin. The next step will be to add logic to
+ allocate stacks for kernel threads from protected kernel memory
+ and all other task types from unprotected user memory (2013-03-20).