summaryrefslogtreecommitdiffstats
path: root/c/src/exec/rtems (unfollow)
Commit message (Collapse)AuthorFilesLines
1999-02-10Comments fixed after problem report from Ian Lance Taylor <ian@airs.com>.Joel Sherrill1-19/+10
1998-12-17New file added in automake reorg.Joel Sherrill1-0/+30
1998-12-17Automake reorgnization.Joel Sherrill6-0/+84
1998-12-15Part II automake reorg by Ralf CorsepiusJoel Sherrill2-7/+2
1998-12-15Part II automake reorg by Ralf CorsepiusJoel Sherrill66-7521/+0
1998-12-03Corrected ifdef on RTEMS_MULTIPROCESSING so the queue is actually closed.Joel Sherrill1-2/+4
1998-11-23Added --disable-multiprocessing flag and modified a lot of files to makeJoel Sherrill38-126/+445
it work.
1998-08-24Added __RTEMS_INSIDE__ macro to insure that ".inl" files are ALWAYS includedJoel Sherrill3-3/+3
when building the executive source.
1998-08-21Added system task attribute to allow one to create a task with "0" priorityJoel Sherrill7-9/+69
via the user api.
1998-06-18All task delete API level services were incorrectly assuming that theJoel Sherrill1-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.
1998-02-17updated copyright to 1998Joel Sherrill160-160/+160
1998-01-30Big patch form Ralf Corsepius described in this email:Joel Sherrill9-36/+18
Here is the result of my nightly work to get RTEMS_ROOT=$srcdir working with different shells and relative/absolute paths. What I did is relatively simple in principle: Instead of setting RTEMS_ROOT in configure.in and then let configure substitute @RTEMS_ROOT@ inside the Makefiles, I now let each Makefile set RTEMS_ROOT from each Makefile's @top_srcdir@ value. The difference is subtile, but with enormous side effects: - If RTEMS_ROOT is set in configure, then the same single value will be propagated to all Makefiles. This breaks using relative paths, as the relative path to the root of the source tree is used inside of all subdirectory Makefiles. - Now each Makefile.in sets RTEMS_ROOT = @top_srcdir@. top_srcdir is computed individually by configure for each single Makefile.in, hereby receiving the correct value, no matter if relative or absolute paths are used. To get this working, I needed to remove setting RTEMS_ROOT from target.cfg.in, because this overrides the value of RTEMS_ROOT from each individual Makefile. Furthermore, I removed RTEMS_CUSTOM from the Makefiles and replaced all "include $(RTEMS_CUSTOM)" directives with"include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP)". Perhaps you don't like this, but I think, to have one variable less is clearer and easier to understand than having several variables refering to the next one. I enclose a small patch to this mail, which - fixes the config.h problem (to finally clearify misunderstands) - removes assignment/subsitution of RTEMS_ROOT from configure.in - contains a workaround for the application Makefile's RTEMS_ROOT problem (reported by Eric) - removes some unused lines from the toplevel Makefile.in - removes assignment of RTEMS_ROOT from make/target.cfg.in
1998-01-20Removed CONFIG_DIR and PROJECT_HOME directories.Joel Sherrill9-9/+9
1997-12-10Modified a lot of files to take a first cut at supporting building fromJoel Sherrill9-9/+36
any directory in the build tree. The only variable which must be set before the command "gmake" is invoked is RTEMS_BSP (e.g. RTEMS_BSP=erc32).
1997-10-21Added check that return argument pointer for old_isr_handler was valid.Joel Sherrill1-0/+3
1997-10-08Fixed typo in the pointer to the license terms.Joel Sherrill160-320/+320
1997-10-08Removed include directory at "build" point and the link of this directoryJoel Sherrill7-9/+9
to lib/include. Went to using a PROJECT_INCLUDE variable.
1997-10-06Make Post an atomic operation.Joel Sherrill4-4/+24
1997-08-28Added RTEMS_IO_ERROR status code.Joel Sherrill2-2/+4
1997-08-02Added these files to contain bodies for routines included in the APIJoel Sherrill3-1/+102
but which did not have real bodies. This is necessary for languages like Ada95 which must have real entries in a library for bindings.
1997-07-31Added rtems_message_queue_get_number_pending directive.Joel Sherrill6-30/+139
1997-07-18fixed typoJoel Sherrill2-8/+8
1997-07-09Corrected typos and spacing.Joel Sherrill2-6/+6
1997-05-28Added support for context switching the data used by the gcc m68kJoel Sherrill2-2/+2
software floating point emulation code. Code implemented by Karen Sara Looney <Karen.Looney@colorado.edu> with much email assistance from Joel.
1997-04-25Corrected by adding check for NULL address passed into get_statusJoel Sherrill1-0/+3
directive.
1997-04-25Added to comment header block to include new status directive.Joel Sherrill2-0/+2
1997-04-22promote TOD_MICROSECONDS_TO_TICKS through API as RTEMS_MICROSECONDS_PER_TICK.Joel Sherrill2-0/+4
1997-04-22File changed to reflect change in license and copyright.Joel Sherrill1-5/+5
1997-04-22headers updated to reflect new style copyright notice as partJoel Sherrill157-785/+785
of switching to the modified GNU GPL.
1997-04-09added support for statistics on rate monotonic periods.Joel Sherrill3-15/+142
1997-04-01This set of changes is the build of what was required to convert toJoel Sherrill9-0/+296
GNU autoconf. This is the first large step in allowing an RTEMS user to perform a one-tree build (per crossgcc FAQ) including RTEMS in the build process. With this change RTEMS is configured in built in the same style as the GNU tools, yet retains the basic structure of its traditional Makefiles (ala Tony Bennett). Jiri Gaisler (jgais@wd.estec.esa.nl) deserves (and received) a big thank you for doing this. There are still issues to be resolved but as of this commit, all target which can be built on a linux host have been using a modified version of the source Jiri submitted. This source was merged and most targets built in the tree before this commit. There are some issues which remain to be resolved but they are primarily related to host OS dependencies, script issues, the use of gawk for hack_specs, and the dependence on gcc snapshots. These will be resolved.
1997-03-08Modified calls to _Thread_Change_priority to take a third argument. The newJoel Sherrill1-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.
1996-12-02Suggested changes from Mark Jordan which eliminate warnings and errorsJoel Sherrill8-16/+22
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.
1996-09-06changed _TOD_Is_set from a function to a boolean variableJoel Sherrill5-9/+9
1996-08-08_MPCI_Register_packet_processor: changed protoype first parameter type to ↵Mark Johannes1-1/+1
MP_packet_Classes
1996-07-03switched from "STATIC INLINE" to "RTEMS_INLINE_ROUTINE"Joel Sherrill30-148/+148
1996-06-06Added Sporadic Server support to posix threads which required changesJoel Sherrill1-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.
1996-06-03added priority ceiling supportJoel Sherrill1-1/+2
1996-05-31renamed _TOD_Ticks_since_boot as _Watchdog_Ticks_since_boot so the WatchdogJoel Sherrill2-2/+2
Handler could timestamp the starting and stopping of timers. Since TOD is built on top of Watchdog, this avoided a circular dependency.
1996-05-29*** empty log message ***Joel Sherrill1-0/+3
1996-05-29It is now not an error to have 0 RTEMS initialization tasks since you couldJoel Sherrill1-0/+6
create POSIX initialization threads.
1996-05-28split the inclusion of "EXTERN" data based on whether it was sapi,Joel Sherrill20-24/+26
score, rtems api, or posix api related.
1996-05-28added initial posix configuration supportJoel Sherrill4-0/+110
1996-04-19event.c: _Event_Manager_initialization no longer a static inlineJoel Sherrill2-0/+29
sem.c: modified to eliminate Purify warnings
1996-04-19_Event_Manager_initialization no longer a static inlineJoel Sherrill2-38/+0
1996-04-19event.h: _Event_Manager_initialization no longer a static inlineJoel Sherrill2-38/+0
1996-04-19event.h: _Event_Manager_initialization no longer a static inlineJoel Sherrill4-0/+24
support.h: updated to use RTEMS_APPLICATION macro
1996-04-19modified to generate fatal error when an unconfigured directive is invoked.Joel Sherrill10-2/+338
1996-03-21update to reflect internal threads reorganizationJoel Sherrill1-0/+22
1996-03-06Removed prototyes for static inline routines and moved the comments intoJoel Sherrill68-2102/+760
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.