summaryrefslogtreecommitdiff
path: root/nuttx/sched
Commit message (Expand)AuthorAgeFilesLines
* 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
* Move socket data from TCB to task group structure.patacongo2013-01-2620-317/+104
* Move stream data from TCB to task group structure.patacongo2013-01-268-59/+34
* Fix a recently introduced memory leakpatacongo2013-01-265-51/+75
* Move file data from TCB to task grouppatacongo2013-01-268-123/+169
* Don't keep the parent task's task ID in the child task's TCB. Instead, keep ...patacongo2013-01-2614-215/+912
* Move environment variables in the task group structurepatacongo2013-01-2531-450/+275
* Add logic to send SIGCHLD to all members of a task grouppatacongo2013-01-254-4/+155
* Add logic to keep track of members of a task grouppatacongo2013-01-259-51/+279
* Add framework to support task groupspatacongo2013-01-2518-134/+600
* Fix some compilation errors when child status disabled; new waitpid logic not...patacongo2013-01-255-15/+15
* Fix some missing logic and inconsistencies in child status logic; Fix a bug i...patacongo2013-01-248-102/+279
* Add psock_poll(); Fix some warnings reported by Lorenz Meier; lm4f logic from JPpatacongo2013-01-241-1/+1
* apps/examples/nettest and poll: Complete Kconfig filespatacongo2013-01-241-10/+0
* Convert configs/olimex-lpc1766stk/nettest to use kconfig-frontendspatacongo2013-01-241-1/+1
* Add logic to retain child task exit status if so configuredpatacongo2013-01-2314-182/+564
* lpc1788 update from Rommel Marcelo; Beginning of logic to retain child exit s...patacongo2013-01-225-3/+392
* Beginnings of definitions for the LPC1788; convert olimex-lpc1766stk to use k...patacongo2013-01-184-125/+129
* Add internal API task_reparent(), used in posix_spawn(). Move libc/spawn/lib...patacongo2013-01-184-1/+826
* Add logic to automatically unload module on exit; Several patches from Mike S...patacongo2013-01-171-19/+17
* Implement vfork() for the MIPS32 architecturepatacongo2013-01-151-2/+6
* Finish dup logic for open files; fix bug in sigtimedwait(), would return wron...patacongo2013-01-143-4/+4
* Use SIGCHLD with waitpid(); implemented wait() and waitid()patacongo2013-01-138-29/+561
* Cosmetic cleanup from SIGCHLD changespatacongo2013-01-131-2/+4
* Fix a *critical* bug in the task exit logic. Implements SIGCHILDpatacongo2013-01-1210-15/+197
* Various changes while debugging posix_spawnpatacongo2013-01-111-0/+61
* Add missing support for signal masks to posix_spawn.patacongo2013-01-101-2/+2
* Fix rounding in clock_time2ticks(). From Mike Smith.patacongo2013-01-101-4/+38
* Add ostest vfork test (does not work yet)patacongo2013-01-073-6/+13
* This initial vfork() check-in was a little pollyanna-ishpatacongo2013-01-074-2/+271
* Remove CONFIG_BUILTIN_APPS_STARTpatacongo2013-01-061-20/+2