summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests (unfollow)
Commit message (Collapse)AuthorFilesLines
2000-01-31Patch rtems-rc-20000118-2.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill29-29/+0
that contains cosmetical changes to the Makefile.ams below tests (removes old, now invalid comments from these Makefile.ams).
2000-01-21Patch from Eric Norum <eric@cls.usask.ca> to implement this:Joel Sherrill1-14/+12
I'd like to propose a change to RTEMS task variables that I think would make them more useful. I think that it is early enough in their existence to still make changes to their API. 1) Change type from `int' to `void *'. 2) Add extra argument to task_variable_add -- if non-NULL, a pointer to a `destructor' function to be called when the task exits. This function would be called with that task's value of the task variable as its argument. In many cases, the `dtor' function could be `free'. rtems_status_code rtems_task_variable_add ( rtems_id tid, void **ptr, void (*dtor)(void *)); rtems_status_code rtems_task_variable_delete (rtems_id tid, void **ptr); This would be all we'd need to cleanly and efficiently support C++ per-thread exception information without dragging in all that POSIX API stuff.
2000-01-13Added test case for broadcast to queue with messages pending.Joel Sherrill2-0/+14
2000-01-13Added start and end herald.Jennifer Averett2-2/+6
2000-01-06Fixed comment.Joel Sherrill1-2/+2
2000-01-05Updated to reflect change in object class numbering due to ITRON APIJoel Sherrill3-3/+3
addition.
2000-01-05Corrected test and screen to reflect implementation working.Joel Sherrill2-5/+13
2000-01-05Changed screen to reflect change in object class numbers with ITRONJoel Sherrill4-19/+19
addition.
2000-01-04Fixed warnings.Joel Sherrill3-6/+1
1999-12-13First attempt at adding simple binary semaphore in addition to the currentJoel Sherrill5-1/+215
"mutex" and counting semaphore. This is at the request of Eric Norum and his EPICS porting effort.
1999-11-23Missed in previous automake conversion patches from Ralf CorsepiusJoel Sherrill1-0/+1
<corsepiu@faw.uni-ulm.de>.
1999-11-23Patch rtems-rc-19991117-12.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1-0/+23
to convert the libtests directory from Makefile.in to Makefile.am.
1999-11-22Patch rtems-rc-19991117-8.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill28-28/+2
to fix some minor bugs in the conversion to automake.
1999-11-22Converted to automake.Joel Sherrill29-9/+1120
1999-11-17Updated copyright notice.Joel Sherrill172-344/+172
1999-11-16Added proper nesting level for dispatch disable check.Joel Sherrill3-3/+3
1999-11-16Corrected nesting level on dispatching verification.Joel Sherrill1-1/+1
1999-11-16Corrected disable dispatch nesting count checks.Joel Sherrill1-7/+7
1999-11-12Added comment block and removed include of deleted file.Joel Sherrill1-1/+4
1999-11-11Screen updated.Joel Sherrill1-0/+2
1999-11-11Added new test sp28 to test the task variable directives.Joel Sherrill4-1/+98
1999-11-10rtems_semaphore_flush test from Eric Norum <eric@cls.usask.ca>.Joel Sherrill4-1/+104
1999-11-05This is another pass at making sure that nothing outside the BSPJoel Sherrill4-15/+6
unnecessarily uses any variables defined by the BSP. On this sweep, use of BSP_Configuration and Cpu_table was eliminated. A significant part of this modification was the addition of macros to access fields in the RTEMS configuration structures. This is necessary to strengthen the division between the BSP independent parts of RTEMS and the BSPs themselves. This started after comments and analysis by Ralf Corsepius <corsepiu@faw.uni-ulm.de>.
1999-11-01Increased stack space of task 2.Joel Sherrill2-2/+2
1999-11-01Increased stack space for a task.Joel Sherrill2-1/+3
1999-11-01Increased stack space for task 1.Joel Sherrill2-2/+2
1999-10-25Added sp26 which tests the rtems_task_is_suspended directive.Joel Sherrill6-1/+250
1999-10-04Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to make fix bugJoel Sherrill1-4/+4
where wrapup left pieces out of the librtemsall.a.
1999-08-18Reran and replaced screen after report from Gerwin Pfab <pb@schenk.isar.de>.Joel Sherrill1-7/+9
1999-08-10New configuration files added by patch fromJoel Sherrill1-0/+21
Ralf Corsepius <corsepiu@faw.uni-ulm.de>".
1999-02-10Added this file.Joel Sherrill1-0/+8
1998-12-03Insure that the same output occurs when multiprocessing is disabled.Joel Sherrill5-1/+41
1998-11-23Added base version of file system infrastructure. This includes a majorJoel Sherrill1-5/+17
overhaul of the RTEMS system call interface. This base file system is the "In-Memory File System" aka IMFS. The design and implementation was done by the following people: + Joel Sherrill (joel@OARcorp.com) + Jennifer Averett (jennifer@OARcorp.com) + Steve "Mr Mount" Salitasc (salitasc@OARcorp.com) + Kerwin Wade (wade@OARcorp.com) PROBLEMS ======== + It is VERY likely that merging this will break the UNIX port. This can/will be fixed. + There is likely some reentrancy/mutual exclusion needed. + Eventually, there should be a "mini-IMFS" description table to eliminate links, symlinks, etc to save memory. All you need to have "classic RTEMS" functionality is technically directories and device IO. All the rest could be left out to save memory.
1998-11-23Added --disable-multiprocessing flag and modified a lot of files to makeJoel Sherrill1-3/+35
it work.
1998-10-05Fixed use of incorrect macro for minimum stack size.Joel Sherrill1-1/+1
1998-09-23IDLE task stack size now specified as a field in the CPU Table for allJoel Sherrill1-1/+1
ports.
1998-08-03Under allcoated task stacks.Joel Sherrill1-1/+1
1998-06-12Patch from Eric Norum to avoid printing from context switch user extension.Joel Sherrill3-7/+37
The array is too long and needs to be shortened.
1998-05-04Fixed prototype of Fatal_Extension.Joel Sherrill2-18/+15
Fixed interface to cofndefs.h for initial extension set.
1998-04-27Added CONFIGURE_EXTRA_TASK_STACKS definition to make memory requirementsJoel Sherrill15-0/+30
more accurate.
1998-04-15Initial sets of user extensions now have memory allocated on the flyJoel Sherrill1-2/+1
for them.
1998-04-06Increased stack size so test would run in debug mode.Joel Sherrill4-4/+5
1998-03-24Rename hppa1_1 to hppa1.1 and switched to using __XXX__ macros forJoel Sherrill1-7/+7
the CPU family name constants.
1998-03-03Corrected to indicate test cases which were skipped.Joel Sherrill1-2/+2
1998-02-20Modified to reflect new restrictions on mutex being released.Joel Sherrill1-1/+1
1998-02-20Removed extra line.Joel Sherrill1-1/+0
1998-02-20Increased stack space to let test run to completion.Joel Sherrill1-4/+4
1998-02-19Increased stack space of tasks.Joel Sherrill1-1/+1
1998-02-19Increased stack size of initialization task.Joel Sherrill1-0/+1
1998-02-17updated copyright to 1998Joel Sherrill167-167/+167