summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Corrected ifdef on RTEMS_MULTIPROCESSING so the queue is actually closed.Joel Sherrill1998-12-031-2/+4
|
* Added --disable-multiprocessing flag and modified a lot of files to makeJoel Sherrill1998-11-2321-103/+367
| | | | it work.
* Added __RTEMS_INSIDE__ macro to insure that ".inl" files are ALWAYS includedJoel Sherrill1998-08-241-1/+1
| | | | when building the executive source.
* Added system task attribute to allow one to create a task with "0" priorityJoel Sherrill1998-08-214-9/+40
| | | | via the user api.
* All task delete API level services were incorrectly assuming that theJoel Sherrill1998-06-181-1/+10
| | | | | | | | | | | task to be deleted was created via the same API (i.e. were of the object class created by this API). For example, a POSIX thread calling the rtems_task_delete(SELF) directive would incorrectly update the RTEMS object local pointer table. Jennifer discovered this when moving tests implemented in C using the Classic RTEMS API into a tree of Ada tests. The Ada tests were implicitly using POSIX services. This lead to some unexpected behavior.
* updated copyright to 1998Joel Sherrill1998-02-1785-85/+85
|
* Added check that return argument pointer for old_isr_handler was valid.Joel Sherrill1997-10-211-0/+3
|
* Fixed typo in the pointer to the license terms.Joel Sherrill1997-10-0885-170/+170
|
* Make Post an atomic operation.Joel Sherrill1997-10-062-2/+12
|
* Added RTEMS_IO_ERROR status code.Joel Sherrill1997-08-281-1/+2
|
* Added these files to contain bodies for routines included in the APIJoel Sherrill1997-08-022-0/+101
| | | | | but which did not have real bodies. This is necessary for languages like Ada95 which must have real entries in a library for bindings.
* Added rtems_message_queue_get_number_pending directive.Joel Sherrill1997-07-314-17/+107
|
* fixed typoJoel Sherrill1997-07-181-4/+4
|
* Corrected typos and spacing.Joel Sherrill1997-07-091-3/+3
|
* Added support for context switching the data used by the gcc m68kJoel Sherrill1997-05-281-1/+1
| | | | | | software floating point emulation code. Code implemented by Karen Sara Looney <Karen.Looney@colorado.edu> with much email assistance from Joel.
* Corrected by adding check for NULL address passed into get_statusJoel Sherrill1997-04-251-0/+3
| | | | directive.
* Added to comment header block to include new status directive.Joel Sherrill1997-04-251-0/+1
|
* promote TOD_MICROSECONDS_TO_TICKS through API as RTEMS_MICROSECONDS_PER_TICK.Joel Sherrill1997-04-221-0/+2
|
* File changed to reflect change in license and copyright.Joel Sherrill1997-04-221-5/+5
|
* headers updated to reflect new style copyright notice as partJoel Sherrill1997-04-2282-410/+410
| | | | of switching to the modified GNU GPL.
* added support for statistics on rate monotonic periods.Joel Sherrill1997-04-092-10/+110
|
* Modified calls to _Thread_Change_priority to take a third argument. The newJoel Sherrill1997-03-081-1/+1
| | | | | | | | | | | | argument indicates whether the task is to be placed at the head or tail of its priority fifo when it is lowering its own priority. POSIX normally follows the RTEMS API conventions but GNAT expects that all lowering of a task's priority by the task itself will result in being placed at the head of the priority FIFO. Normally, this would only occur as the result of lose of inherited priority. The RTEMS API always puts tasks at the end of their priority group except upon loss of inherited priority.
* Suggested changes from Mark Jordan which eliminate warnings and errorsJoel Sherrill1996-12-027-14/+19
| | | | | | | | he received using the Microtec C++ compiler. Most of these are either missing casts from/to (void *), heavy handed use of enumerated types, or simply assumed conversions. There is at least one actual bug in an error path in thread.c in which the wrong argument was passed to _Thread_Stack_Free and was not being caught by gcc.
* changed _TOD_Is_set from a function to a boolean variableJoel Sherrill1996-09-063-5/+5
|
* switched from "STATIC INLINE" to "RTEMS_INLINE_ROUTINE"Joel Sherrill1996-07-0315-74/+74
|
* Added Sporadic Server support to posix threads which required changesJoel Sherrill1996-06-061-4/+16
| | | | | in the core to support multiple algorithms to handle cpu time budgetting which resulted in a change to the calling sequence of _Thread_Initialize.
* added priority ceiling supportJoel Sherrill1996-06-031-1/+2
|
* renamed _TOD_Ticks_since_boot as _Watchdog_Ticks_since_boot so the WatchdogJoel Sherrill1996-05-311-1/+1
| | | | | Handler could timestamp the starting and stopping of timers. Since TOD is built on top of Watchdog, this avoided a circular dependency.
* *** empty log message ***Joel Sherrill1996-05-291-0/+3
|
* It is now not an error to have 0 RTEMS initialization tasks since you couldJoel Sherrill1996-05-291-0/+6
| | | | create POSIX initialization threads.
* split the inclusion of "EXTERN" data based on whether it was sapi,Joel Sherrill1996-05-2810-12/+13
| | | | score, rtems api, or posix api related.
* added initial posix configuration supportJoel Sherrill1996-05-282-0/+55
|
* event.c: _Event_Manager_initialization no longer a static inlineJoel Sherrill1996-04-192-0/+29
| | | | sem.c: modified to eliminate Purify warnings
* _Event_Manager_initialization no longer a static inlineJoel Sherrill1996-04-191-19/+0
|
* event.h: _Event_Manager_initialization no longer a static inlineJoel Sherrill1996-04-191-19/+0
|
* event.h: _Event_Manager_initialization no longer a static inlineJoel Sherrill1996-04-192-0/+12
| | | | support.h: updated to use RTEMS_APPLICATION macro
* Removed prototyes for static inline routines and moved the comments intoJoel Sherrill1996-03-0634-1051/+380
| | | | | | | | | | | | | | | 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.
* changed post task extension from user set to api set and added flagJoel Sherrill1996-02-132-4/+9
| | | | in each thread which must be set when the post switch extension is to be run.
* comment added to describe synchronization logic in timeout routineJoel Sherrill1996-02-131-0/+21
|
* new isr synchronization algorithm using a single enumerated set of states.Joel Sherrill1996-02-093-12/+29
|
* added rtems_interrupt_is_in_progressJoel Sherrill1996-02-091-0/+14
|
* changed synchronization algorithm to be a single list of enumerated statesJoel Sherrill1996-02-081-2/+2
|
* added class to initial id macroJoel Sherrill1996-01-171-4/+4
|
* updates from Tony Bennett for PA and UNIX portsJoel Sherrill1996-01-151-1/+7
|
* added correct use of _Thread_queue_Enter_critical_sectionJoel Sherrill1995-12-081-1/+1
|
* new states added and _Rate_monotonic_Set_State removed.Joel Sherrill1995-12-052-94/+60
|
* Insert mode argument to _Watchdog_Insert removed. Now are watchdog timersJoel Sherrill1995-12-014-17/+13
| | | | are automatically activated upon insertion.
* Changed code for exit from synchronization state to a switch on theJoel Sherrill1995-12-011-11/+19
| | | | | possible synchronization actions. This should have made it harder to avoid a case.
* spurious blank line removedJoel Sherrill1995-12-011-1/+0
|
* Replaced critical section algorithm to correct race conditions.Joel Sherrill1995-12-011-10/+19
|