summaryrefslogtreecommitdiff
path: root/nuttx/include
Commit message (Expand)AuthorAgeFilesLines
* In the kernel build, pass task paramters in the stack, not using the arrary i...patacongo2013-03-211-0/+10
* Copy siginfo_t to step before calling a user-space signal handlerpatacongo2013-03-211-1/+1
* Add a up_stack_frame() interface to allocate a frame of data on a task's stack.patacongo2013-03-211-1/+38
* Change prototypes of up_create_stack and up_release_stack to include a task t...patacongo2013-03-201-22/+66
* Add support for ram vectors to the ARMv7-M architecturepatacongo2013-03-182-11/+24
* Add support for calling to and returning from signal handlers in in user-mode...patacongo2013-03-174-51/+149
* Fix bad conditional logic in mkconfig.c; Add user-mode pthread start-up logicpatacongo2013-03-164-3/+55
* Switch to user-mode before starting a new taskpatacongo2013-03-143-11/+90
* itoa() from Ryan Sundbergpatacongo2013-03-141-1/+5
* Fixe to kernel build and syscalls.patacongo2013-03-131-4/+18
* A few early fixes in kernel build testingpatacongo2013-03-121-0/+1
* Fix a typo that crept into lpc17_allocateheap.c in the recent kernel allocato...patacongo2013-03-112-2/+10
* Remove user_map.h; replace with a header at the beginning of the user-space b...patacongo2013-03-102-24/+193
* Create sched_ufree and sched_kfree from sched_free; Use user-accessible heap ...patacongo2013-03-101-7/+14
* More changes for a kernel-mode allocator (more to be done)patacongo2013-03-093-52/+121
* With these fixes, the kernel build is basically functional (but there is more...patacongo2013-03-092-8/+25
* up_addregion should use kmm_addregion; move garbage kmm*.c file to mm/. for nowpatacongo2013-03-082-4/+6
* Add support for multiple heapspatacongo2013-03-083-43/+264
* Move all memory manager globals to a structure. Pass structure pointer as a ...patacongo2013-03-082-9/+15
* Fix a whole in the logic from the previous check-inpatacongo2013-03-071-1/+1
* Fix network poll() issue: don't interrupt poll if socket not connected. Lis...patacongo2013-03-071-4/+10
* More kernel build fixespatacongo2013-03-072-2/+14
* Fix some bad syscall dispatching log. This change is not testable until thes...patacongo2013-03-061-30/+68
* Implement user-mode work queuespatacongo2013-03-061-41/+205
* Move work queue logic from sched/ to libc/wqueue. It is not core logic and w...patacongo2013-03-052-20/+84
* Updated Open1788 calibration; More compilation fixes from Mike Smithpatacongo2013-03-051-0/+1
* STM32 F4 patches from Petteri Aimonen (mostly USB)patacongo2013-02-152-20/+69
* Add EMC register definitions for the LPC1788patacongo2013-02-121-5/+10
* Preserve access and creation flags with fcntl(F_SETFL)patacongo2013-02-121-0/+7
* Add a driver for the SST30VF NOR FLASH partspatacongo2013-02-111-10/+25
* Some fixes needed for STM32 build after recent scheduler changespatacongo2013-02-071-3/+3
* Changed needed to fix issues with task_restart()patacongo2013-02-062-1/+3
* Moving pending signals to task group; Logic to recover some MQ resources on p...patacongo2013-02-051-6/+15
* Bugfix: whenever a thread it must report the PID of the main task (even it i...patacongo2013-02-041-16/+21
* Divide struct tcb_s into structs task_tcb_s and pthread_tcb_spatacongo2013-02-041-24/+63
* Rename _TCB to struct tcb_spatacongo2013-02-046-62/+52
* Move list of open message queues to task group. Now message queues opened by...patacongo2013-02-041-4/+9
* Move waitpid() data structures to task group; The caller of waitpid() is now ...patacongo2013-02-041-5/+10
* Move atexit/on_exit data structures to task group; Now callbacks only occur w...patacongo2013-02-041-23/+29
* Move pthread join and key creation data into the task grouppatacongo2013-02-031-0/+16
* New interface task_spawn(); exec_builtin() now uses task_spawn(); All argv ty...patacongo2013-02-023-11/+41
* Misc clean; mark assertions as non-returning; allow toolchain prefix to be ov...patacongo2013-01-311-8/+13
* Fix readline return value; Add support for removable serial devicespatacongo2013-01-311-24/+53
* LM4F update from JPpatacongo2013-01-301-0/+5
* Add syslog.h; rename lib_rawprintf() to syslog()patacongo2013-01-283-28/+109
* Updates for stm32f4discovery/usbnsh configurationpatacongo2013-01-281-6/+6
* Add a start hook that can be setup to call a function in the context of a new...patacongo2013-01-271-2/+22
* Move socket data from TCB to task group structure.patacongo2013-01-262-12/+9
* Move stream data from TCB to task group structure.patacongo2013-01-263-13/+10
* Move file data from TCB to task grouppatacongo2013-01-262-67/+64