summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/unlimited/test1.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* testsuites/samples: Change license to BSD-2Joel Sherrill2022-04-121-3/+22
| | | | Updates #3053.
* 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.
* samples/unlimited: Fix printf() warning and clean upJoel Sherrill2014-10-091-1/+1
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* 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.
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-111-2/+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.
* Add HAVE_CONFIG_H.Ralf Corsepius2011-02-221-0/+4
|
* Include "tmacros.h". Use PRIxrtems_id to print rtems_ids.Ralf Corsepius2009-10-261-1/+2
|
* Various warning fixes.Ralf Corsepius2009-10-241-4/+6
|
* 2009-10-14 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-10-141-3/+3
| | | | * unlimited/test1.c: Spacing.
* Convert to "bool".Ralf Corsepius2008-09-061-3/+3
|
* Remove stray white spaces.Ralf Corsepius2004-04-201-14/+14
|
* Remove stray white spaces.Ralf Corsepius2004-04-151-5/+0
|
* 2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius2004-03-301-1/+1
| | | | | | * fileio/init.c, fileio/system.h, ticker/system.h, ticker/tasks.c, unlimited/init.c, unlimited/test1.c, unlimited/test2.c, unlimited/test3.c: Convert to using c99 fixed size types.
* 2003-09-04 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2003-09-041-1/+1
| | | | | | | | | | | | | | * README, base_mp/apptask.c, base_mp/init.c, base_mp/system.h, base_mp/node1/base_mp.doc, base_mp/node2/base_mp.doc, base_sp/apptask.c, base_sp/base_sp.doc, base_sp/init.c, base_sp/system.h, cdtest/init.c, cdtest/main.cc, cdtest/system.h, fileio/fileio.doc, fileio/init.c, fileio/system.h, hello/hello.doc, hello/init.c, hello/system.h, minimum/init.c, minimum/minimum.doc, paranoia/init.c, paranoia/paranoia.doc, paranoia/system.h, ticker/init.c, ticker/system.h, ticker/tasks.c, ticker/ticker.doc, unlimited/init.c, unlimited/system.h, unlimited/test1.c, unlimited/test2.c, unlimited/test3.c, unlimited/unlimited.doc: URL for license changed.
* 2003-01-03 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2003-01-031-4/+7
| | | | | * unlimited/system.h, unlimited/test1.c: Backed off previous modification as it does not compile.
* 2002-10-31 Chris Johns <ccj@acm.org>Joel Sherrill2003-01-031-7/+4
| | | | | | | * unlimited/test1.c: PR296. Only fails if more tasks than allowed can be created. * unlimited/system.h: PR296. Reference the number of tasks in the configuration table rather than a hardcoded number.
* 2002-07-01 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2002-07-011-3/+6
| | | | | * unlimited/test1.c: Corrected use of _Objects_Information_table now that it is a two dimensional array based upon API and class.
* 2002-04-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2002-04-171-0/+1
| | | | | | | | | | | * base_sp/apptask.c: Include <stdlib.h>. * hello/init.c: Ditto. * paranoia/init.c: Ditto. * ticker/tasks.c: Ditto. * unlimited/init.c: Ditto. * unlimited/test1.c: Ditto. * unlimited/test2.c: Ditto. * unlimited/test3.c: Ditto.
* 2001-10-12 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2001-10-121-1/+0
| | | | | | * unlimited/init.c, unlimited/system.h, unlimited/test1.c, unlimited/test2.c, unlimited/test3.c, unlimited/unlimited.doc: Fixed typo.
* Modified to use minimum stack size and reserve the necessary amountJoel Sherrill1999-11-021-1/+2
| | | | of space in the workspace.
* Unlimited objects patch from Chris Johns <ccj@acm.org>. Email follows:Joel Sherrill1999-03-171-0/+102
First, the unlimited patch. I have compiled the unlmited patch for the Linux posix BSP only and it seems to work cleanly. I would like a really major application run on this change before commiting as the changes are very core and significant. I am currently building all the tests to run. I have no targets suitable to test on at the moment. I have tested the patch for inline functions and macros. Turning macros on has found some core bugs. I have fixed these but have not run all the tests. Please review the patch for these changes. They are: 1) The conditional compilation for MP support broke the core messages code. You cannot embed a conditional macro in another macro. The Send and Urgent Send calls are macros. 2) User extensions handler initialisation now has two parameters. I have updated the macros to support the extra parameter. The patch also contains the gcc-target-default.cfg fix required to build the kernel. More of a by product than a fix for you.