summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch rtems-rc-20000104-17.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-01-1314-100/+4986
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that addresses the librdbg/rpcgen related problems: Changes: * All rpcgen generated files are now kept inside of the source tree * Fix librdbg/configure to correctly detect presence of rpcgen and awk * Use rpcgen -m to generated remdeb_svc.c * Remove msgout/_msgout from awk.svc * minor cleanups to librdbg/configure.in ATTENTION --- IMPORTANT: * With keeping rpc-generated files pre-build inside of the source tree, you as the packager of RTEMS have to ensure that timestamps are correctly set up: The generated files must not be older than the *.x files. * This is extraordinarily important when - putting the package on read-only media - after checking out from CVS - after modifications to the *.x files * If one of the *.x files is modified you have to either - build for i386/pc386 and powerpc/mcp750 - or to invoke the same rpcgen calls as the librdbg/src/<cpu>/<bsp>/Makefile.am do manually before checking-in the files to CVS. Proposal: We could add something to bootstrap for touching the rpcgen-generated sources and/or to manually regenerate them. NOTE FROM JOEL: Ralf proposed modifying bootstrap to handle rpcgen. I think this is the best solution as it is something already done in the snapshot procedure.
* All m68k BSPs now build with new ELF style linkcmds.Joel Sherrill2000-01-1346-681/+192
|
* POSIX message queues now include complete functionality includingJoel Sherrill2000-01-132-4/+44
| | | | | | | | | | | | | | | | blocking sends when the queue is full. The SuperCore was enhanced to support blocking on send. The existing POSIX API was debugged and numerous test cases were added to psxmsgq01 by Jennifer Averett. SuperCore enhancements and resulting modifications to other APIs were done by Joel. There is one significant point of interpretation for the POSIX API. What happens to threads already blocked on a message queue when the mode of that same message queue is changed from blocking to non-blocking? We decided to unblock all waiting tasks with an EAGAIN error just as if a non-blocking version of the same operation had returned unsatisfied. This case is not discussed in the POSIX standard and other implementations may have chosen differently.
* Added test case for broadcast to queue with messages pending.Joel Sherrill2000-01-134-0/+28
|
* Changed error checking macros for POSIX.Joel Sherrill2000-01-134-100/+220
|
* POSIX message queues now include complete functionality includingJoel Sherrill2000-01-1328-774/+2556
| | | | | | | | | | | | | | | | blocking sends when the queue is full. The SuperCore was enhanced to support blocking on send. The existing POSIX API was debugged and numerous test cases were added to psxmsgq01 by Jennifer Averett. SuperCore enhancements and resulting modifications to other APIs were done by Joel. There is one significant point of interpretation for the POSIX API. What happens to threads already blocked on a message queue when the mode of that same message queue is changed from blocking to non-blocking? We decided to unblock all waiting tasks with an EAGAIN error just as if a non-blocking version of the same operation had returned unsatisfied. This case is not discussed in the POSIX standard and other implementations may have chosen differently.
* Missed removing this file in an earlier commit. This is removedJoel Sherrill2000-01-131-70/+0
| | | | because of the conversion to automake and replaced by a Makefile.am.
* Added POSIX interpretation subsection and updated status.Joel Sherrill2000-01-132-4/+16
| | | | | The message queue manager chapter needs to be updated to reflect completion of the implementation.
* + Added commentsJennifer Averett2000-01-136-16/+92
|
* + Added and yellow line tested _CORE_message_queue_Flush_waiting_threadsJennifer Averett2000-01-136-2/+348
| | | | | and _CORE_message_queue_Insert_message for posix message queues. + Yellow line tested new source
* Added comment.Jennifer Averett2000-01-132-0/+2
|
* + Comment cleanupJennifer Averett2000-01-138-30/+24
|
* Removed referance to rtems error.Jennifer Averett2000-01-132-2/+4
| | | | Added correct include file.
* Added comment to indicate this path does not occur.Jennifer Averett2000-01-132-2/+4
|
* Added start and end herald.Jennifer Averett2000-01-134-4/+12
|
* Made sweep of changes to get all BSPs to the same point on the linkcmdsJoel Sherrill2000-01-1322-39/+102
| | | | and memory layout. Next step is to share the same bsp_pretasking_hook.
* New patch from Eric Norum plus some minor mods by Joel.Joel Sherrill2000-01-138-361/+310
|
* Fixed spacing.Joel Sherrill2000-01-131-2/+2
|
* Made _clear_end a "PROVIDE."Joel Sherrill2000-01-131-1/+1
|
* + Added code for waiting sendJennifer Averett2000-01-122-8/+78
| | | | + Yellow lined tested routine with Posix message queue test (01)
* Debugged and yellow line tested routines.Jennifer Averett2000-01-126-82/+142
|
* + Modified return codesJennifer Averett2000-01-122-32/+54
| | | | | + Added messsage size check + Debugged and yellowed out routine
* + Added signal processing.Jennifer Averett2000-01-122-2/+6
| | | | + Yellow line tested source.
* + Modified to correct return codes.Jennifer Averett2000-01-122-4/+10
| | | | | + Removed extra flag attribute from message queue structure. + Yellow-lined all posix message queue routines.
* + Changed call from core flush to core close routine. This flushes waitingJennifer Averett2000-01-122-4/+8
| | | | queues as well as the messages.
* + Removed name validation code (this was already done in nametoid.Jennifer Averett2000-01-122-82/+12
|
* Patch rtems-rc-20000104-16.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-01-122-41/+288
| | | | that converts the libbsp/i386 subdirectory to full automake.
* Eric Norum <eric@cls.usask.ca> submitted linker script and bsp_specsJoel Sherrill2000-01-1226-761/+1420
| | | | | | | | for the gen68360 that let it work with ELF and C++ exceptions. This was used as the basis for changes to EVERY m68k bsp_specs and linkcmds. Before this modification is over, the layout of the starting stack, heap, and workspace will likely be modified for every m68k BSP. Then they will all be very similar.
* Patch rtems-rc-20000104-16.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-01-1276-1787/+1142
| | | | that converts the libbsp/i386 subdirectory to full automake.
* Called symbol table ".nm" not .num like every other BSP.Joel Sherrill2000-01-121-1/+1
|
* Patch rtems-rc-20000104-15.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-01-127-10/+14
| | | | | | | | | | that fixes the following problems: 1. Removing bogus ';' in some configure.in (cosmetical fix) 2. Moves GAS_CODE16 checks to libbsp/i386/*/configure.in (essential fix) #2 was responsible for the gcc/binutils-2.9.5 choking while building for the pc386.
* File removed as it was not being used.Joel Sherrill2000-01-111-268/+0
|
* Removed old hack of using Configuration Table entry ticks_per_timesliceJoel Sherrill2000-01-1130-620/+450
| | | | | | | being set to 0 to indicate that there should be no Clock Tick. This was used by the Timing Tests to avoid clock tick overhead perturbing execution times. Now the Timing Tests simply leave the Clock Tick Driver out of the Device Driver Table.
* Patch from Emmanuel Raguet <raguet@crf.canon.fr> to correct macroJoel Sherrill2000-01-111-4/+4
| | | | | expansion. These macros were modified to correct warnings and obviously needed more parentheses to expand correctly.
* Fixed spacing.Joel Sherrill2000-01-112-2/+2
|
* This test was enhanced to test for the case in sigtimedwait() where itJoel Sherrill2000-01-114-0/+64
| | | | | | | must deal with a pending process oriented signal. Prior to the addition of this testcase, sigtimedwait() did not return properly when a process oriented signal was pending. The problem was reported by Wayne Bullaughey <wayneb@cacdsp.com>.
* This code did not return properly when a process oriented signalJoel Sherrill2000-01-112-12/+10
| | | | was pending. Reported by Wayne Bullaughey <wayneb@cacdsp.com>.
* Bug fix from Wayne Bullaughey <wayneb@cacdsp.com> to use the complementJoel Sherrill2000-01-112-2/+2
| | | | of the mask when disabling the interrupt.
* Now automake generated.Joel Sherrill2000-01-101-71/+0
|
* Added mpc6xx/timer/Makefile.Joel Sherrill2000-01-101-0/+1
|
* Accidentally deleted.Joel Sherrill2000-01-101-0/+70
|
* Removed definition of USHRT_MAX to remove lots of redefinition warnings.Joel Sherrill2000-01-103-6/+0
|
* Added pc486 and pc586 as aliases of pc386 with proper cpu flags.Joel Sherrill2000-01-105-4/+34
|
* Removed warning by changing %eax -> %ax as source of move to segmentJoel Sherrill2000-01-101-3/+3
| | | | registers.
* Added pc486 and pc586 to list.Joel Sherrill2000-01-101-1/+4
|
* Corrected compilation problem in lgdt instruction.Joel Sherrill2000-01-101-0/+3
|
* Added include of <bsp/irq.h> per Jay Kulpinski <jskulpin@eng01.gdds.com>.Joel Sherrill2000-01-101-0/+2
|
* Missed cleanup from Ralf Corsepius.Joel Sherrill2000-01-102-8/+10
|
* Don't look at the object information structure for threads/tasksJoel Sherrill2000-01-104-34/+56
| | | | | for APIs that are not configured. This resulted in weird behavior when ITRON was disabled on some targets.
* Patch rtems-rc-20000104-14.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-01-103-6/+6
| | | | which fixes some PowerPC specific bugs.