summaryrefslogtreecommitdiffstats
path: root/c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* _Event_Manager_initialization no longer a static inlineJoel Sherrill1996-04-192-38/+0
|
* event.h: _Event_Manager_initialization no longer a static inlineJoel Sherrill1996-04-192-38/+0
|
* event.h: _Event_Manager_initialization no longer a static inlineJoel Sherrill1996-04-194-0/+24
| | | | support.h: updated to use RTEMS_APPLICATION macro
* modified to generate fatal error when an unconfigured directive is invoked.Joel Sherrill1996-04-1924-8/+794
|
* changes to compile in macro configuration without warnings.Joel Sherrill1996-04-196-4/+48
|
* minor mods to get to compile locallyJoel Sherrill1996-03-212-3/+4
|
* some instructions altered for older binutilsJoel Sherrill1996-03-212-16/+16
|
* updatedJoel Sherrill1996-03-211-15/+0
|
* *** empty log message ***Joel Sherrill1996-03-213-8/+4
|
* updated for 68302 and so gen68360 bsp would compileJoel Sherrill1996-03-212-1/+13
|
* update to reflect internal threads reorganizationJoel Sherrill1996-03-212-0/+44
|
* updated to reflect gen68360 from Eric Norum.Joel Sherrill1996-03-211-0/+4
|
* include of mc68360.h changed to m68360.h to reflect filename change.Joel Sherrill1996-03-064-4/+4
|
* Added 68360 support submitted by W. Eric Norum (eric@skatter.usask.ca).Joel Sherrill1996-03-062-2/+12
| | | | Also increased minimum stack size from 1K to 2K.
* Generic 68360 BSP (gen360) submitted by: W. Eric Norum <eric@skatter.usask.ca>.Joel Sherrill1996-03-0612-0/+2355
| | | | | | | | | | | Contact information: W. Eric Norum Saskatchewan Accelerator Laboratory 107 North Road University of Saskatchewan Saskatoon, Saskatchewan, CANADA S7N 5C6
* As part of reducing visibility into rtems and hiding the .inl filesJoel Sherrill1996-03-0619-0/+19
| | | | | from the application code, this file required more visibility than is given by default to application code.
* Removed prototyes for static inline routines and moved the comments intoJoel Sherrill1996-03-06159-6881/+2426
| | | | | | | | | | | | | | | the inline implementation. The impetus for this was twofold. First, it is incorrect to have static inline prototypes when using the macro implementation. Second, this reduced the number of lines in the include files seen by rtems.h by about 2000 lines. Next we restricted visibility for the inline routines to inside the executive itself EXCEPT for a handful of objects. This reduced the number of include files included by rtems.h by 40 files and reduced the lines in the include files seen by rtems.h by about 6000 lines. In total, these reduced the compile time of the entire RTEMS tree by 20%. This results in about 8 minutes savings on the SparcStation 10 morgana.
* Removed prototyes for static inline rgutines and moved the comments intoJoel Sherrill1996-03-061-41/+2
| | | | | | | | | | | | | | | the inline implementation. The impetus for this was twofold. First, it is incorrect to have static inline prototypes when using the macro implementation. Second, this reduced the number of lines in the include files seen by rtems.h by about 2000 lines. Next we restricted visibility for the inline routines to inside the executive itself EXCEPT for a handful of objects. This reduced the number of include files included by rtems.h by 40 files and reduced the lines in the include files seen by rtems.h by about 6000 lines. In total, these reduced the compile time of the entire RTEMS tree by 20%. This results in about 8 minutes savings on the SparcStation 10 morgana.
* The name of the test support routine pause was changed to rtems_test_pauseJoel Sherrill1996-02-2213-42/+38
| | | | to avoid conflict with the standard POSIX routine pause(2).
* Changed io manager initialization routine to not be static and added it here.Joel Sherrill1996-02-211-0/+37
|
* Changed io manager initialization routine to not be static.Joel Sherrill1996-02-212-0/+16
|
* changed io manager initialization routine to not be staticJoel Sherrill1996-02-212-6/+2
|
* Dispersal of internal thread handler resulted in removal of someJoel Sherrill1996-02-211-16/+11
| | | | variables and renaming of others.
* Dispersal of internal thread handler resulted in the SYSI task beingJoel Sherrill1996-02-2116-21/+20
| | | | | | only required in a multiprocessor system. It was replace by the MPCI Receive Server. As a result, the CPU Table field for extra stack for the SYSI task was changed to be extra stack for the MPCI Receive Server.
* Removed the internal thread objects and dispersed its contents toJoel Sherrill1996-02-2116-17/+778
| | | | | | | | | | the thread handler (IDLE), MPCI object (SYSI now MP Receive) and initialize_executive_early (IO initialization). The SYSI task no longer exists in a single processor configuration. This reduces single processor Workspace requirements by a TCB and a stack which is often larger than the minimum stack size. Moving the IO initialization plus accompanying BSP hooks eliminated an initialization ordering problem in which a global task could be created before the MPCI was initialized.
* Dispersal of internal thread handler resulted in IDLE thread becomingJoel Sherrill1996-02-2111-52/+49
| | | | | part of the Thread Handler. This required the name of the optional CPU dependent IDLE thread implementation to change.
* MPCI Receive became a thread and the prototype changed.Joel Sherrill1996-02-212-2/+6
|
* Removed the internal thread objects and dispersed its contents toJoel Sherrill1996-02-211-12/+14
| | | | | | | | | | the thread handler (IDLE), MPCI object (SYSI now MP Receive) and initialize_executive_early (IO initialization). The SYSI task no longer exists in a single processor configuration. This reduces single processor Workspace requirements by a TCB and a stack which is often larger than the minimum stack size. Moving the IO initialization plus accompanying BSP hooks eliminated an initialization ordering problem in which a global task could be created before the MPCI was initialized.
* Removed arguments from _Thread_Start_multitasking.Joel Sherrill1996-02-142-8/+2
|
* idle thread now created before system initialization thread.Joel Sherrill1996-02-141-4/+1
| | | | Also system initialization thread only created in MP systems.
* removed arguments from _Thread_Start_multitaskingJoel Sherrill1996-02-141-12/+10
|
* white space problemJoel Sherrill1996-02-141-1/+0
|
* Moved some initialization from the system initialization thread toJoel Sherrill1996-02-141-2/+42
| | | | | initialize_executive_early. This was done to clear up an ordering problem in which global tasks could be created before the MPCI layer was initialized.
* removed post switch extensionJoel Sherrill1996-02-135-5/+0
|
* fixed bug when outbyte had argument in wrong order relative to those invoking itJoel Sherrill1996-02-131-3/+3
|
* changed post task extension from user set to api set and added flagJoel Sherrill1996-02-1316-121/+76
| | | | in each thread which must be set when the post switch extension is to be run.
* added clear of _ISR_Signals_to_thread_executingJoel Sherrill1996-02-131-1/+4
|
* more comments added and existing ones cleaned up in synchronization pathsJoel Sherrill1996-02-131-1/+13
|
* comma removed from end of last enumerated elementJoel Sherrill1996-02-132-2/+2
|
* comment added to describe synchronization logic in timeout routineJoel Sherrill1996-02-131-0/+21
|
* *** empty log message ***Joel Sherrill1996-02-121-4/+0
|
* As part of implementing the new isr synchronization algorithm using aJoel Sherrill1996-02-091-1/+1
| | | | single enumerated set of states the set of event manager variables changed.
* new isr synchronization algorithm using a single enumerated set of states.Joel Sherrill1996-02-0912-66/+110
|
* added rtems_interrupt_is_in_progressJoel Sherrill1996-02-092-0/+28
|
* added clear of _ISR_Signals_to_thread_executingJoel Sherrill1996-02-092-0/+2
|
* changed synchronization algorithm to be a single list of enumerated statesJoel Sherrill1996-02-082-4/+4
|
* alignment on workspace changed from CPU_ALIGNMENT to CPU_HEAP_ALIGNMENTJoel Sherrill1996-02-082-2/+2
|
* Swapped order of nested acquisition check and check for returning unsatisfied.Joel Sherrill1996-02-011-6/+6
|
* synchronization state bugs addressJoel Sherrill1996-02-011-7/+12
|
* invalid use of tcb field resource countJoel Sherrill1996-02-011-1/+0
|