summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch rtems-rc-20000118-2.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-01-3129-29/+0
| | | | | that contains cosmetical changes to the Makefile.ams below tests (removes old, now invalid comments from these Makefile.ams).
* Patch from Eric Norum <eric@cls.usask.ca> to implement this:Joel Sherrill2000-01-211-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.
* Added test case for broadcast to queue with messages pending.Joel Sherrill2000-01-132-0/+14
|
* Added start and end herald.Jennifer Averett2000-01-132-2/+6
|
* Fixed comment.Joel Sherrill2000-01-061-2/+2
|
* Updated to reflect change in object class numbering due to ITRON APIJoel Sherrill2000-01-053-3/+3
| | | | addition.
* Corrected test and screen to reflect implementation working.Joel Sherrill2000-01-052-5/+13
|
* Changed screen to reflect change in object class numbers with ITRONJoel Sherrill2000-01-054-19/+19
| | | | addition.
* Fixed warnings.Joel Sherrill2000-01-043-6/+1
|
* First attempt at adding simple binary semaphore in addition to the currentJoel Sherrill1999-12-135-1/+215
| | | | | "mutex" and counting semaphore. This is at the request of Eric Norum and his EPICS porting effort.
* Missed in previous automake conversion patches from Ralf CorsepiusJoel Sherrill1999-11-231-0/+1
| | | | <corsepiu@faw.uni-ulm.de>.
* Patch rtems-rc-19991117-12.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1999-11-231-0/+23
| | | | to convert the libtests directory from Makefile.in to Makefile.am.
* Patch rtems-rc-19991117-8.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1999-11-2228-28/+2
| | | | to fix some minor bugs in the conversion to automake.
* Converted to automake.Joel Sherrill1999-11-2229-9/+1120
|
* Updated copyright notice.Joel Sherrill1999-11-17172-344/+172
|
* Added proper nesting level for dispatch disable check.Joel Sherrill1999-11-163-3/+3
|
* Corrected nesting level on dispatching verification.Joel Sherrill1999-11-161-1/+1
|
* Corrected disable dispatch nesting count checks.Joel Sherrill1999-11-161-7/+7
|
* Added comment block and removed include of deleted file.Joel Sherrill1999-11-121-1/+4
|
* Screen updated.Joel Sherrill1999-11-111-0/+2
|
* Added new test sp28 to test the task variable directives.Joel Sherrill1999-11-114-1/+98
|
* rtems_semaphore_flush test from Eric Norum <eric@cls.usask.ca>.Joel Sherrill1999-11-104-1/+104
|
* This is another pass at making sure that nothing outside the BSPJoel Sherrill1999-11-054-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>.
* Increased stack space of task 2.Joel Sherrill1999-11-012-2/+2
|
* Increased stack space for a task.Joel Sherrill1999-11-012-1/+3
|
* Increased stack space for task 1.Joel Sherrill1999-11-012-2/+2
|
* Added sp26 which tests the rtems_task_is_suspended directive.Joel Sherrill1999-10-256-1/+250
|
* Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to make fix bugJoel Sherrill1999-10-041-4/+4
| | | | where wrapup left pieces out of the librtemsall.a.
* Reran and replaced screen after report from Gerwin Pfab <pb@schenk.isar.de>.Joel Sherrill1999-08-181-7/+9
|
* New configuration files added by patch fromJoel Sherrill1999-08-101-0/+21
| | | | Ralf Corsepius <corsepiu@faw.uni-ulm.de>".
* Added this file.Joel Sherrill1999-02-101-0/+8
|
* Insure that the same output occurs when multiprocessing is disabled.Joel Sherrill1998-12-035-1/+41
|
* Added base version of file system infrastructure. This includes a majorJoel Sherrill1998-11-231-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.
* Added --disable-multiprocessing flag and modified a lot of files to makeJoel Sherrill1998-11-231-3/+35
| | | | it work.
* Fixed use of incorrect macro for minimum stack size.Joel Sherrill1998-10-051-1/+1
|
* IDLE task stack size now specified as a field in the CPU Table for allJoel Sherrill1998-09-231-1/+1
| | | | ports.
* Under allcoated task stacks.Joel Sherrill1998-08-031-1/+1
|
* Patch from Eric Norum to avoid printing from context switch user extension.Joel Sherrill1998-06-123-7/+37
| | | | The array is too long and needs to be shortened.
* Fixed prototype of Fatal_Extension.Joel Sherrill1998-05-042-18/+15
| | | | Fixed interface to cofndefs.h for initial extension set.
* Added CONFIGURE_EXTRA_TASK_STACKS definition to make memory requirementsJoel Sherrill1998-04-2715-0/+30
| | | | more accurate.
* Initial sets of user extensions now have memory allocated on the flyJoel Sherrill1998-04-151-2/+1
| | | | for them.
* Increased stack size so test would run in debug mode.Joel Sherrill1998-04-064-4/+5
|
* Rename hppa1_1 to hppa1.1 and switched to using __XXX__ macros forJoel Sherrill1998-03-241-7/+7
| | | | the CPU family name constants.
* Corrected to indicate test cases which were skipped.Joel Sherrill1998-03-031-2/+2
|
* Modified to reflect new restrictions on mutex being released.Joel Sherrill1998-02-201-1/+1
|
* Removed extra line.Joel Sherrill1998-02-201-1/+0
|
* Increased stack space to let test run to completion.Joel Sherrill1998-02-201-4/+4
|
* Increased stack space of tasks.Joel Sherrill1998-02-191-1/+1
|
* Increased stack size of initialization task.Joel Sherrill1998-02-191-0/+1
|
* updated copyright to 1998Joel Sherrill1998-02-17167-167/+167
|