summaryrefslogtreecommitdiff
path: root/apps/examples/ostest
Commit message (Collapse)AuthorAgeFilesLines
* More trailing whilespace removalGregory Nutt2014-04-136-13/+13
|
* Make sure that there is one space after forGregory Nutt2014-04-121-1/+1
|
* More changes to reduce complaints from CppCheck. Some latent bugs fixes, ↵Gregory Nutt2014-02-101-3/+3
| | | | but probably some new typos introduced
* apps/examples/ostest: Spelling fix from Richard CochranGregory Nutt2014-01-231-1/+1
|
* Add Z16F NSH configurationGregory Nutt2014-01-011-1/+1
|
* Add FPU configuration options for the OS testGregory Nutt2013-09-181-1/+30
|
* Remove CONFIG_XYZ_BUILTIN configurations, replace with the single ↵Gregory Nutt2013-06-122-8/+1
| | | | CONFIG_NSH_BUILTIN_APPS. Add SAM3/4 sam_periphclks.h which is just a header file that includes the right header file. Misc SAM3U-EK cleanup
* .dSYM only needs to be in the same .gitignore files as .exeGregory Nutt2013-05-301-1/+0
|
* Upate .gitignore files. Add .dSYM. Make sure / is present where needed. ↵Gregory Nutt2013-05-301-15/+12
| | | | Add some missing .gitignore files
* Cancel test needs to wait for the thread to set non-cancelable mode at one pointGregory Nutt2013-04-181-1/+11
|
* Clone svn:ignore directory atributed to .gitignore filesGregory Nutt2013-04-041-0/+15
|
* Add port to Zilogic Systems ZKIT-ARM-1769 board (more coming)patacongo2013-02-261-12/+17
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5673 42af7a65-404d-4744-a932-0658087f49c3
* Minor changes to make OS test more robust in the presence of many memory ↵patacongo2013-02-262-21/+68
| | | | | | allocation failures git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5672 42af7a65-404d-4744-a932-0658087f49c3
* STM32F3Discovery passes all OS tests; Delay loop has been calibratedpatacongo2013-02-091-9/+84
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5629 42af7a65-404d-4744-a932-0658087f49c3
* Fix some problems with the vfork() test on the STM32F3Discoverypatacongo2013-02-084-6/+11
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5628 42af7a65-404d-4744-a932-0658087f49c3
* STM32F3Discovery port is complete, builds, and is ready for testingpatacongo2013-02-071-4/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5622 42af7a65-404d-4744-a932-0658087f49c3
* Changed needed to fix issues with task_restart()patacongo2013-02-065-7/+214
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5615 42af7a65-404d-4744-a932-0658087f49c3
* Misc clean-up and bugfixes related to multi-thread group signallingpatacongo2013-02-063-35/+105
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5614 42af7a65-404d-4744-a932-0658087f49c3
* Moving pending signals to task group; Logic to recover some MQ resources on ↵patacongo2013-02-051-9/+34
| | | | | | pthread_cacancel or task_delete; Now obeys rules for delivering signals to a process with threads git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5613 42af7a65-404d-4744-a932-0658087f49c3
* Move pthread join and key creation data into the task grouppatacongo2013-02-031-3/+5
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5602 42af7a65-404d-4744-a932-0658087f49c3
* Fix some compilation errors when child status disabled; new waitpid logic ↵patacongo2013-01-251-9/+9
| | | | | | not encoding/decoding status properly git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5561 42af7a65-404d-4744-a932-0658087f49c3
* Fix some missing logic and inconsistencies in child status logic; Fix a bug ↵patacongo2013-01-241-0/+28
| | | | | | introduced into sigaction() git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5560 42af7a65-404d-4744-a932-0658087f49c3
* Use SIGCHLD with waitpid(); implemented wait() and waitid()patacongo2013-01-134-18/+305
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5515 42af7a65-404d-4744-a932-0658087f49c3
* Cosmetic cleanup from SIGCHLD changespatacongo2013-01-131-1/+6
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5514 42af7a65-404d-4744-a932-0658087f49c3
* Fix a *critical* bug in the task exit logic. Implements SIGCHILDpatacongo2013-01-121-0/+58
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5513 42af7a65-404d-4744-a932-0658087f49c3
* Fixed ARM vfork; re-enabled vfork OS testpatacongo2013-01-071-6/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5490 42af7a65-404d-4744-a932-0658087f49c3
* Disable the vfork() OS test... it failspatacongo2013-01-071-0/+10
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5489 42af7a65-404d-4744-a932-0658087f49c3
* Add ostest vfork test (does not work yet)patacongo2013-01-074-0/+115
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5488 42af7a65-404d-4744-a932-0658087f49c3
* Some fixes to apps/builtin/registry need to handle some additional casespatacongo2012-12-241-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5456 42af7a65-404d-4744-a932-0658087f49c3
* Remove .context kludge from apps/ directorypatacongo2012-12-231-4/+5
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5455 42af7a65-404d-4744-a932-0658087f49c3
* Missing comma in EVERY DELFILE/DELDIR macro call in every Makefilepatacongo2012-11-201-3/+3
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5373 42af7a65-404d-4744-a932-0658087f49c3
* Most of the changes needed to support Windows native clean; distclean is has ↵patacongo2012-11-171-2/+3
| | | | | | a problem git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5367 42af7a65-404d-4744-a932-0658087f49c3
* Move some (hopefully) un-necessary quotes in Makefiles for Mikepatacongo2012-11-151-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5356 42af7a65-404d-4744-a932-0658087f49c3
* Changes to get a clean ez80 build using the ZDS 5.1.1 toolchainpatacongo2012-11-121-2/+6
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5341 42af7a65-404d-4744-a932-0658087f49c3
* Correct some issues with last check-in; ez80 still does not buildpatacongo2012-11-111-2/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5339 42af7a65-404d-4744-a932-0658087f49c3
* Partial change: Removing bash ARCHIVE looppatacongo2012-11-111-3/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5336 42af7a65-404d-4744-a932-0658087f49c3
* Fix apps/netutils/webclient build problempatacongo2012-11-061-2/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5317 42af7a65-404d-4744-a932-0658087f49c3
* Make ostest RR scheduler test use less memory from Freddie Chopin; Plus ↵patacongo2012-11-052-91/+94
| | | | | | build fix from Darcy Gong git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5314 42af7a65-404d-4744-a932-0658087f49c3
* USB device drivers: Add hooks to to use common, external DMA buffer ↵patacongo2012-09-1313-13/+13
| | | | | | allocation implementation.. git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5142 42af7a65-404d-4744-a932-0658087f49c3
* Rename all apps/examples/-/main.c to something uniquepatacongo2012-09-132-2/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5141 42af7a65-404d-4744-a932-0658087f49c3
* LPC17xx Kconfig looks goodpatacongo2012-09-051-0/+29
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5099 42af7a65-404d-4744-a932-0658087f49c3
* Add configurable application entry pointpatacongo2012-08-301-20/+12
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5070 42af7a65-404d-4744-a932-0658087f49c3
* Add some protection to the priority inheritance logic when sem_post() is ↵patacongo2012-08-281-2/+10
| | | | | | called from an interrupt handler git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5060 42af7a65-404d-4744-a932-0658087f49c3
* Fix some list handling associated with priority inheritancepatacongo2012-08-261-2/+12
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5053 42af7a65-404d-4744-a932-0658087f49c3
* update Kconfig filespatacongo2012-04-131-0/+9
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4598 42af7a65-404d-4744-a932-0658087f49c3
* Add kconfig documentationpatacongo2012-04-061-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4567 42af7a65-404d-4744-a932-0658087f49c3
* Adding skeleton Kconfig files (part 3 of 2)patacongo2012-04-061-0/+4
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4566 42af7a65-404d-4744-a932-0658087f49c3
* NFS update + make some examples configurable as NSH built-inspatacongo2012-03-222-12/+32
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4501 42af7a65-404d-4744-a932-0658087f49c3
* Add single precision operations to FPU testpatacongo2012-02-261-29/+80
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4429 42af7a65-404d-4744-a932-0658087f49c3
* Fix bugs in lazy FPU register savingpatacongo2012-02-251-49/+64
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4427 42af7a65-404d-4744-a932-0658087f49c3