summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spstkalloc02/init.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-05-20Update company nameSebastian Huber1-1/+1
The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
2022-10-14config: Add CONFIGURE_IDLE_TASK_STORAGE_SIZESebastian Huber1-0/+13
By default, allocate the IDLE task storage areas from the RTEMS Workspace. This avoids having to estimate the thread-local storage size in the default configuration. Add the application configuration option CONFIGURE_IDLE_TASK_STORAGE_SIZE to request a static allocation of the task storage area for IDLE tasks. Update #3835. Update #4524.
2022-07-21sptests: Disable Newlib reentrancyMatt Joyce1-0/+7
Update #4560.
2022-04-05testsuites/sptests/sp[s-z]*: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2022-03-10bsps/testsuites/: Scripted embedded brains header file clean upJoel Sherrill1-6/+0
Updates #4625.
2022-01-28sptests: Avoid a dependency on errnoSebastian Huber1-1/+6
Avoid a dependency on errno which might be a thread-local object. The tests sp01, spstkalloc02, and sptls03 assume that no thread-local storage object is present. Update #4560.
2020-04-16Canonicalize config.h includeSebastian Huber1-1/+1
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2017-11-06tests: Use simple console driverSebastian Huber1-1/+1
Update #3170. Update #3199.
2017-10-28tests: Remove TEST_INITSebastian Huber1-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.
2017-10-23testsuite: Use printk for all test output where possible.Chris Johns1-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.
2017-08-27spstkalloc02/init.c: Fix printf() format warningsJoel Sherrill1-6/+6
2017-02-03Prefix confdefs.h internal def with an underscoreSebastian Huber1-2/+2
Close #2895.
2015-04-27sptests/spstkalloc02: Fix namespace issueSebastian Huber1-3/+3
Avoid collision with <sys/param.h> defined PAGE_SIZE.
2014-05-06testsuites: Remove BSP_SMALL_MEMORYJoel Sherrill1-25/+0
2014-03-25tests/sptests: Use <rtems/test.h>Sebastian Huber1-3/+7
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2013-07-23score: Create heap implementation headerSebastian Huber1-1/+1
Move implementation specific parts of heap.h and heap.inl into new header file heapimpl.h. The heap.h contains now only the application visible API.
2013-04-08sptests/spstkalloc02: Disable for small memory BSPSebastian Huber1-0/+25
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-12-14Typo.Sebastian Huber1-2/+2
2011-12-142011-12-14 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-0/+162
PR 1924/cpukit * spstkalloc02/.cvsignore, spstkalloc02/Makefile.am, spstkalloc02/init.c, spstkalloc02/spstkalloc02.doc, spstkalloc02/spstkalloc02.scn: New files. * Makefile.am, configure.ac: Reflect changes above.