summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/unlimited (follow)
Commit message (Collapse)AuthorAgeFilesLines
* samples/*/*.doc: Change license to BSD-2Joel Sherrill2022-06-141-0/+2
| | | | Updates #3053.
* testsuites/samples: Change license to BSD-2Joel Sherrill2022-04-125-15/+110
| | | | Updates #3053.
* samples/unlimited: Prevent compile errorKinsey Moore2020-12-031-1/+0
| | | | | | For architectures with relatively large minimum stack sizes, this test breaks during compilation due to a static check. The init task stack size should not need to be set for this test.
* score: Simplify _Thread_Initialize()Sebastian Huber2020-02-121-0/+2
| | | | | | | | Allocate new thread queue heads during objects information extend. This removes an error case and the last dependency on the workspace in _Thread_Initialize(). Update #3835.
* score: Remove Objects_Information::auto_extendSebastian Huber2018-12-141-4/+4
| | | | | | | Use Objects_Information::objects_per_block to provide this information. Add and use _Objects_Is_auto_extend(). Update #3621.
* tests: Use rtems_task_exit()Sebastian Huber2018-10-051-1/+1
| | | | Update #3533.
* testsuite/samples: Merged nested Makefile.am files into one Makefile.amChris Johns2018-04-101-22/+0
| | | | | | This change is part of the testsuite Makefile.am reorganization. Update #3382
* tests: Use simple console driverSebastian Huber2017-11-061-1/+1
| | | | | Update #3170. Update #3199.
* tests: Remove TEST_INITSebastian Huber2017-10-281-2/+0
| | | | | | | | The TEST_EXTERN is a used only by the system.h style tests and they use CONFIGURE_INIT appropriately. Update #3170. Update #3199.
* testsuite: Use printk for all test output where possible.Chris Johns2017-10-231-0/+2
| | | | | | | | | | - Remove the printf support leaving the direct printk support configured with TESTS_USE_PRINTK and all other output goes via a buffered vsniprintf call to printk. - Control the test's single init for functions and global data with TEST_INIT and not CONFIGURE_INIT. They are now separate. Updates #3170.
* samples/unlimited: Fix printf() warning and clean upJoel Sherrill2014-10-095-24/+33
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-216-6/+6
|
* tests/samples: Use <rtems/test.h>Sebastian Huber2014-03-171-3/+5
|
* testsuites: Include missing header filesSebastian Huber2013-07-281-0/+2
|
* score: Create object implementation headerSebastian Huber2013-07-261-1/+0
| | | | | | Move implementation specific parts of object.h and object.inl into new header file objectimpl.h. The object.h contains now only the application visible API.
* samples - Eliminate missing prototype warningsJoel Sherrill2012-05-311-15/+4
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-117-17/+0
| | | | | | | | | | | | Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
* Revert: Remove CVS IdsJoel Sherrill2012-05-071-0/+5
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
* Remove CVS-Ids.Ralf Corsépius2012-05-041-5/+0
|
* confdefs: Add declaration for unlimited objects.Gedare Bloom2012-03-271-1/+2
| | | | | | | | | Adds to confdefs a way to specify rtems_resource_unlimited for classic and posix objects using a new macro CONFIGURE_OBJECTS_UNLIMITED. Use CONFIGURE_OBJECTS_ALLOCATION_SIZE to declare the allocation size for extending the set of objects at runtime. Updates the unlimited sample to demonstrate how to use the new macros. Also adds new documentation in the C User's Manual regarding configuring with unlimited objects.
* Remove all .cvsignore files.Joel Sherrill2012-02-011-2/+0
|
* 2011-12-08 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2011-12-081-3/+1
| | | | | | | | | | PR 1589/build * base_mp/node1/Makefile.am, base_mp/node2/Makefile.am, base_sp/Makefile.am, capture/Makefile.am, cdtest/Makefile.am, fileio/Makefile.am, hello/Makefile.am, iostream/Makefile.am, loopback/Makefile.am, minimum/Makefile.am, nsecs/Makefile.am, paranoia/Makefile.am, pppd/Makefile.am, ticker/Makefile.am, unlimited/Makefile.am: Remove obsolete optional manager capability.
* Add HAVE_CONFIG_H.Ralf Corsepius2011-02-224-0/+16
|
* Use PRIdrtems_task_argument to print rtems_task_argument's.Ralf Corsepius2009-10-271-2/+2
|
* Include "tmacros.h". Use PRIxrtems_id to print rtems_ids.Ralf Corsepius2009-10-264-10/+14
|
* Add -I$(top_srcdir)/../support/include.Ralf Corsepius2009-10-261-0/+2
|
* Various warning fixes.Ralf Corsepius2009-10-244-19/+21
|
* Add missing prototypes.Ralf Corsepius2009-10-241-3/+3
|
* 2009-10-14 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-10-141-3/+3
| | | | * unlimited/test1.c: Spacing.
* 2009-08-21 Xi Yang <hiyangxi@gmail.com>Joel Sherrill2009-08-211-1/+1
| | | | * unlimited/test2.c: Fix spacing.
* Eliminate _exe_/.exe.Ralf Corsepius2009-04-031-7/+7
|
* 2008-12-14 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-12-141-2/+3
| | | | | | | | | | * unlimited/init.c: Run all tests successfully with maxixum number of priorities as 16 instead of 256. This was done by temporarily modifying the score priority.h maximum. This allowed testing of all API code to ensure that it worked properly with a reduced number of priorities. Most modifications were to switch from hard-coded maximum to using the API provided methods to determine maximum number of priority levels.
* 2008-10-13 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-10-131-1/+1
| | | | * unlimited/system.h: Tighten configuration for stack space.
* 2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-10-021-2/+2
| | | | * unlimited/system.h: 10000 task ids is too many for some targets.
* 2008-09-18 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-181-1/+1
| | | | | | * unlimited/system.h: Support up to 10K tasks in loop. With 64MB on pc386 and configured for unified workspace, you can get close to this.
* 2008-09-17 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-171-0/+1
| | | | | | * minimum/init.c, unlimited/system.h: Add support for optionally having a unified work area. In other words, the RTEMS Workspace and C Program Heap are the same pool of memory.
* Convert to "bool".Ralf Corsepius2008-09-063-5/+5
|
* 2008-04-17 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-04-171-0/+2
| | | | | * fileio/init.c, hello/system.h, minimum/init.c, unlimited/system.h: Use CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER where needed.
* 2007-05-11 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-05-111-1/+1
| | | | | | | | | | | | * base_sp/Makefile.am, hello/Makefile.am, iostream/Makefile.am, loopback/Makefile.am, nsecs/Makefile.am, pppd/Makefile.am, ticker/Makefile.am, ticker/system.h, unlimited/Makefile.am: Add optional managers to Makefiles. Clean up test cases so last output line follows END OF pattern. Make sure test case all run. All tests appeared ok on sis. * nsecs/init.c: Commit hack so test will compile when POSIX is disabled. Remove hack when clock_gettime() is present even when --disable-posix.
* 2006-09-08 Ken Peters <ken.peters@jpl.nasa.gov>Joel Sherrill2006-09-081-1/+1
| | | | | PR 1162/rtems * unlimited/system.h: Reserve enough memory for the stacks wanted.
* Eliminate scndir, docdir. Use rtems_testsdir instead.Ralf Corsepius2006-07-111-4/+2
|
* Convert to using *_PROGRAMS.Ralf Corsepius2005-11-131-12/+9
|
* Rework.Ralf Corsepius2005-11-111-27/+7
|
* Cosmetics.Ralf Corsepius2005-11-111-3/+0
|
* Eliminate TEST.Ralf Corsepius2005-11-111-7/+6
|
* Expand sample.am.Ralf Corsepius2005-11-111-1/+20
|
* Eliminate DOCTYPES.Ralf Corsepius2005-11-101-2/+1
|
* s/SAMPLE/TEST/ for improved consistency with other tests.Ralf Corsepius2005-11-101-3/+3
|
* Remove SRCS, PRINT_SRCS.Ralf Corsepius2005-11-071-2/+0
|
* Switch back to include compile.am instead of amcompile.amRalf Corsepius2005-11-071-1/+1
|