summaryrefslogtreecommitdiff
path: root/nuttx/sched
Commit message (Expand)AuthorAgeFilesLines
* Mostly updates and corrections to .gitignore filesGregory Nutt2013-04-041-11/+10
* Clone svn:ignore directory atributed to .gitignore filesGregory Nutt2013-04-041-0/+11
* Rework of kernel build signal dispatch to user-space handlerspatacongo2013-03-231-2/+2
* Corrections needed after further test of stack-based task argumentspatacongo2013-03-214-6/+24
* In the kernel build, pass task paramters in the stack, not using the arrary i...patacongo2013-03-212-45/+261
* Copy siginfo_t to step before calling a user-space signal handlerpatacongo2013-03-211-1/+14
* Change prototypes of up_create_stack and up_release_stack to include a task t...patacongo2013-03-206-20/+43
* Add support for ram vectors to the ARMv7-M architecturepatacongo2013-03-181-4/+5
* Add support for calling to and returning from signal handlers in in user-mode...patacongo2013-03-171-3/+18
* Fix bad conditional logic in mkconfig.c; Add user-mode pthread start-up logicpatacongo2013-03-161-2/+10
* Fix more compile errors and warnings introduced in recent commitspatacongo2013-03-151-1/+1
* Switch to user-mode before starting a new taskpatacongo2013-03-142-11/+25
* Fixe to kernel build and syscalls.patacongo2013-03-133-7/+12
* Fix some ARMv7-M syscall logicpatacongo2013-03-121-6/+12
* A few early fixes in kernel build testingpatacongo2013-03-121-1/+1
* Reorganize some AT91SAM3U files; Add an NSH kernel build configuration to the...patacongo2013-03-116-6/+26
* Fix a typo that crept into lpc17_allocateheap.c in the recent kernel allocato...patacongo2013-03-112-0/+30
* Remove user_map.h; replace with a header at the beginning of the user-space b...patacongo2013-03-101-16/+31
* Create sched_ufree and sched_kfree from sched_free; Use user-accessible heap ...patacongo2013-03-1021-71/+189
* More changes for a kernel-mode allocator (more to be done)patacongo2013-03-094-14/+42
* up_addregion should use kmm_addregion; move garbage kmm*.c file to mm/. for nowpatacongo2013-03-089-814/+6
* Implement user-mode work queuespatacongo2013-03-062-75/+31
* Move work queue logic from sched/ to libc/wqueue. It is not core logic and w...patacongo2013-03-058-740/+1
* Updated Open1788 calibration; More compilation fixes from Mike Smithpatacongo2013-03-051-1/+1
* Add debug output when memory allocations failpatacongo2013-02-282-0/+2
* Add a THTTPD configuratin for zkit-arm-1769patacongo2013-02-261-1/+2
* Add port to Zilogic Systems ZKIT-ARM-1769 board (more coming)patacongo2013-02-261-0/+2
* Minor changes to make OS test more robust in the presence of many memory allo...patacongo2013-02-262-12/+12
* More Cortex-M0/NUC120 fixespatacongo2013-02-251-4/+4
* STM32 F4 patches from Petteri Aimonen (mostly USB)patacongo2013-02-152-0/+34
* STM32F3Discovery passes all OS tests; Delay loop has been calibratedpatacongo2013-02-091-4/+10
* Fix some problems with the vfork() test on the STM32F3Discoverypatacongo2013-02-082-30/+12
* Fixes to get STM32F3Discovery runningpatacongo2013-02-082-6/+27
* Some fixes needed for STM32 build after recent scheduler changespatacongo2013-02-072-10/+10
* Changed needed to fix issues with task_restart()patacongo2013-02-0617-186/+573
* Misc clean-up and bugfixes related to multi-thread group signallingpatacongo2013-02-063-4/+2
* Moving pending signals to task group; Logic to recover some MQ resources on p...patacongo2013-02-0524-432/+882
* Bugfix: whenever a thread it must report the PID of the main task (even it i...patacongo2013-02-0417-49/+71
* Divide struct tcb_s into structs task_tcb_s and pthread_tcb_spatacongo2013-02-0419-143/+254
* Rename _TCB to struct tcb_spatacongo2013-02-04107-317/+321
* Move list of open message queues to task group. Now message queues opened by...patacongo2013-02-046-38/+150
* Move waitpid() data structures to task group; The caller of waitpid() is now ...patacongo2013-02-042-18/+51
* Move atexit/on_exit data structures to task group; Now callbacks only occur w...patacongo2013-02-044-63/+95
* Make the names of the execsem consistent; Need defaults for some CONFIG_ sett...patacongo2013-02-033-8/+8
* Now that join info is in the task group, need to free when task group exits. ...patacongo2013-02-035-5/+129
* Move pthread join and key creation data into the task grouppatacongo2013-02-0318-212/+284
* Correct a memory leak in NSHpatacongo2013-02-023-10/+45
* New interface task_spawn(); exec_builtin() now uses task_spawn(); All argv ty...patacongo2013-02-0212-283/+970
* Add configs/stm32f4discovery/usbnshpatacongo2013-01-272-8/+16
* Add a start hook that can be setup to call a function in the context of a new...patacongo2013-01-277-2/+129