summaryrefslogtreecommitdiff
path: root/nuttx/binfmt/binfmt_execmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Move include/nuttx/mm.h to include/nuttx/mm/mm.hGregory Nutt2014-09-241-1/+1
* Move include/nuttx/shm.h to include/nuttx/mm/shm.hGregory Nutt2014-09-241-1/+1
* Move include/nuttx/gran.h to include/nuttx/mm/gran.hGregory Nutt2014-09-241-1/+1
* Add support for a per-process virtual page allocator. This is a new member o...Gregory Nutt2014-09-231-1/+14
* execv() is a basic system interface. It should not be in libc/ but rather in...Gregory Nutt2014-09-151-2/+6
* In kernel mode, we have to duplicate the callers argv[] buffer when exec'ing ...Gregory Nutt2014-09-141-8/+7
* Fix an ordering problem in integration of kernel stack logicGregory Nutt2014-09-141-15/+13
* Initial integration of kernel stack (does not work)Gregory Nutt2014-09-141-7/+28
* Misc fixes to repair some of the breakage to the SAMA5D4-EK elf configuration...Gregory Nutt2014-09-111-5/+5
* Add logic to initialize the per-process user heap when each user process is s...Gregory Nutt2014-09-101-15/+25
* Add configuration to use the fixed DRAM mapping for the page pool (if availab...Gregory Nutt2014-09-101-2/+7
* When allocating a stack for a new process using the user-sapce allocator, nee...Gregory Nutt2014-09-091-1/+27
* Remove final traces of the 8015 from the NuttX source treeGregory Nutt2014-09-011-13/+0
* Reanem kzalloc to kmm_zalloc for consistencyGregory Nutt2014-08-311-1/+1
* Rename kfree to kmm_free for consistency with other naming conventionsGregory Nutt2014-08-311-1/+1
* Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency wi...Gregory Nutt2014-08-311-1/+1
* Rename kufree to kumm_free for consistency with other namingGregory Nutt2014-08-311-1/+1
* nuttx/sched: Remove explicit references to errno. That is a problem from wi...Gregory Nutt2014-08-281-3/+3
* ADDRENV: Use a group flag to determine if there is an address environment (in...Gregory Nutt2014-08-271-0/+4
* Rename up_addrenv_assign() to up_addrenv_clone() and generalize its arguments...Gregory Nutt2014-08-261-7/+6
* addrenv interface changes: up_addrenv_create() may need to create .text and ....Gregory Nutt2014-08-241-2/+2
* Change CONFIG_ADDRENV to CONFIG_ARCH_ADDRENV; change how it is selected -- th...Gregory Nutt2014-08-241-1/+1
* A few fixes for compilation errors due to recent address environment fixesGregory Nutt2014-08-221-1/+1
* An address environment is the property of a task group, not of a threadGregory Nutt2014-08-221-3/+3
* Replace os_internal.h with sched/sched.h in files that actually reference som...Gregory Nutt2014-08-081-1/+1
* binfmt_execmodule() calls to sched_releasttcb() was not updated to use the se...patacongo2013-03-231-2/+2
* Change prototypes of up_create_stack and up_release_stack to include a task t...patacongo2013-03-201-1/+1
* More changes for a kernel-mode allocator (more to be done)patacongo2013-03-091-2/+2
* LPC17xx now supports FPU needed by LPC1788; LPC17xx can not use Mike's common...patacongo2013-02-081-5/+5
* Divide struct tcb_s into structs task_tcb_s and pthread_tcb_spatacongo2013-02-041-9/+9
* Rename _TCB to struct tcb_spatacongo2013-02-041-5/+5
* Add a start hook that can be setup to call a function in the context of a new...patacongo2013-01-271-38/+23
* Change the way thread priority is handled in binfmt/ to better match the way ...patacongo2013-01-171-3/+3
* BINFS now supports open, close, and FIOC_FILENAME ioctlpatacongo2013-01-161-5/+9
* Incorporate address environment interfaces in binfmt/ logicpatacongo2012-12-191-2/+43
* C++ static destructors work with ELF load too nowpatacongo2012-10-291-1/+1
* C++ constructors work with ELF load nowpatacongo2012-10-291-8/+52
* Move binfmt.h, nxflat.h, elf.h, and symtab.h to include/nuttx/binfmt/patacongo2012-10-241-1/+1
* Email address change in nuttx/patacongo2012-09-131-1/+1
* Should use bdbg, not dbgpatacongo2009-12-201-3/+3
* Changing NuttX fixed size type names to C99 standard names -- things will be ...patacongo2009-12-151-7/+8
* Integrate PIC support into context switchingpatacongo2009-06-171-1/+1
* Straighten out conditional compilationpatacongo2009-06-171-0/+5
* Add exec_modulepatacongo2009-06-171-0/+184