summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/unlimited/test1.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-04-12testsuites/samples: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2020-02-12score: Simplify _Thread_Initialize()Sebastian Huber1-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.
2018-12-14score: Remove Objects_Information::auto_extendSebastian Huber1-4/+4
Use Objects_Information::objects_per_block to provide this information. Add and use _Objects_Is_auto_extend(). Update #3621.
2014-10-09samples/unlimited: Fix printf() warning and clean upJoel Sherrill1-1/+1
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2013-07-28testsuites: Include missing header filesSebastian Huber1-0/+2
2013-07-26score: Create object implementation headerSebastian Huber1-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.
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill1-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.
2011-02-22Add HAVE_CONFIG_H.Ralf Corsepius1-0/+4
2009-10-26Include "tmacros.h". Use PRIxrtems_id to print rtems_ids.Ralf Corsepius1-1/+2
2009-10-24Various warning fixes.Ralf Corsepius1-4/+6
2009-10-142009-10-14 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-3/+3
* unlimited/test1.c: Spacing.
2008-09-06Convert to "bool".Ralf Corsepius1-3/+3
2004-04-20Remove stray white spaces.Ralf Corsepius1-14/+14
2004-04-15Remove stray white spaces.Ralf Corsepius1-5/+0
2004-03-302004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius1-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-042003-09-04 Joel Sherrill <joel@OARcorp.com>Joel Sherrill1-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-032003-01-03 Joel Sherrill <joel@OARcorp.com>Joel Sherrill1-4/+7
* unlimited/system.h, unlimited/test1.c: Backed off previous modification as it does not compile.
2003-01-032002-10-31 Chris Johns <ccj@acm.org>Joel Sherrill1-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-012002-07-01 Joel Sherrill <joel@OARcorp.com>Joel Sherrill1-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-172002-04-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1-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-122001-10-12 Joel Sherrill <joel@OARcorp.com>Joel Sherrill1-1/+0
* unlimited/init.c, unlimited/system.h, unlimited/test1.c, unlimited/test2.c, unlimited/test3.c, unlimited/unlimited.doc: Fixed typo.
1999-11-02Modified to use minimum stack size and reserve the necessary amountJoel Sherrill1-1/+2
of space in the workspace.
1999-03-17Unlimited objects patch from Chris Johns <ccj@acm.org>. Email follows:Joel Sherrill1-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.