summaryrefslogtreecommitdiff
path: root/apps/examples/ostest
Commit message (Collapse)AuthorAgeFilesLines
* OS test: Improved error checking for sem_timedwait() from Juha NiskanenGregory Nutt2015-02-201-12/+36
|
* apps/examples/ostest: Sample errno on returns from sem_timedwait(). ↵Gregory Nutt2015-02-191-5/+8
| | | | Otherwise, intervening system calls my change the value of the reported errno. Noted by Juha Niskanen
* apps/examples/ostest: Missing prototype for nsem_test()Gregory Nutt2014-12-061-0/+4
|
* Fixes for more cppcheck complaints. Mostly cosmeticGregory Nutt2014-11-252-3/+3
|
* More fixes to issues noted by cppcheckGregory Nutt2014-11-254-15/+7
|
* Trivial AIO-related changesGregory Nutt2014-10-091-9/+9
|
* Extend the AIO testGregory Nutt2014-10-071-54/+128
|
* Add another asynchronous I/O testGregory Nutt2014-10-071-7/+43
|
* AIO signal related fixes; extensino to AIO testGregory Nutt2014-10-071-2/+60
|
* Add test for aio_cancel() and fix some bugs found by the testGregory Nutt2014-10-061-3/+101
|
* AIO test improvementsGregory Nutt2014-10-061-10/+151
|
* Rename CONFIG_LIBC_AIO to CONFIG_FS_AIO since it is now an OS propertyGregory Nutt2014-10-054-5/+5
|
* More changes for AIO integrationGregory Nutt2014-10-051-9/+6
|
* First round of changes fo AIO integrationGregory Nutt2014-10-053-11/+23
|
* Add AIO test case in OS testGregory Nutt2014-10-054-1/+261
|
* First round of fixes for re-implemented VFS message queuesGregory Nutt2014-09-291-2/+2
|
* Fix to bugs in initial commit of named semaphore testGregory Nutt2014-09-281-9/+16
|
* Add a simple named semaphore test to the OS testGregory Nutt2014-09-284-0/+259
|
* Add a trivial test of sem_timedwait() to the OS testGregory Nutt2014-09-264-1/+239
|
* MAINOBJ needs to be added to object list in many MakefileGregory Nutt2014-09-111-1/+1
|
* Changes to many Makefiles. For kernel buil object containing main cannot go ↵Gregory Nutt2014-09-071-25/+26
| | | | into library because of name collisions. The object file must be handled as a special case in every Makefile
* Determine the main object name from the main source name in every kernel ↵Gregory Nutt2014-09-071-0/+1
| | | | build Makefile
* Add an nm command after every kernel build link to show if there are any ↵Gregory Nutt2014-09-071-0/+1
| | | | undefined symbols
* Add the main object to the list objects to link in every kernel build link ↵Gregory Nutt2014-09-071-1/+1
| | | | command
* Add the main object to the dependencies for the kernel buildGregory Nutt2014-09-071-1/+1
|
* If now a kernel build, then add the main object in with all of the restGregory Nutt2014-09-071-0/+4
|
* Update apps/examples/helloxx/MakefileGregory Nutt2014-09-071-1/+1
|
* Customize the program name in the generic setup that was added to each ↵Gregory Nutt2014-09-061-1/+1
| | | | makefile that installs a program
* Add generic setup logic to every Makefile that installs a program. Each ↵Gregory Nutt2014-09-061-0/+9
| | | | will need customization
* Fix all install targetsGregory Nutt2014-09-061-4/+4
|
* Oops wrong elseGregory Nutt2014-09-061-1/+1
|
* Add missing else from last big changeGregory Nutt2014-09-061-0/+1
|
* Add program installation for CONFIG_BUILD_KERNEL in all Makefiles that build ↵Gregory Nutt2014-09-061-0/+9
| | | | a main()
* Only one install target per MakefileGregory Nutt2014-09-061-4/+2
|
* Use more standard *argv[] instead easier **argvGregory Nutt2014-09-064-4/+4
|
* With kernel build, entry point to all tasks is main, not some xyz_mainGregory Nutt2014-09-064-0/+20
|
* Add an install target to all makefiles. For the import build, the top-level ↵Gregory Nutt2014-09-061-0/+4
| | | | Makefile now does two passes: (1) builds libapp.a, then (2) installs the programs (not yet finished)
* Remove final traces of the 8015 from the NuttX source treeGregory Nutt2014-09-014-9/+4
|
* Change all time conversions. Yech. New timer units in microseconds breaks ↵Gregory Nutt2014-08-072-2/+2
| | | | all existing logic that used milliseconds in the conversions. Something likely got broken doing this, probably because I confused a MSEC2TICK conversion with a TICK2MSEC conversion. Also, the tickless OS no appears fully functional and passes the OS test on the simulator with no errors
* Remove CONFIG_DISABLE_CLOCKGregory Nutt2014-08-072-10/+5
|
* 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
|