summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score (unfollow)
Commit message (Collapse)AuthorFilesLines
1998-01-23Cleaned up a bit.Joel Sherrill1-9/+31
1998-01-20Removed warning per Chris Johns' suggestion.Joel Sherrill4-4/+4
1998-01-20Removed warning per Chris John's suggestion.Joel Sherrill1-1/+1
1998-01-20Removed CONFIG_DIR and PROJECT_HOME directories.Joel Sherrill23-23/+23
1998-01-15Error reported by Duncan Smith <dds@flavors.com>:Joel Sherrill2-2/+2
>> >>There is a 30 day error in _TOD_Days_since_last_leap_year[2..3] >> > >> >Thanks. >> >What's the condition to hit this error? >> >Every year 4n+2 and 4n+3 ? >> >(i.e. 1998, 1999, 2002, 2003, ...) >> > >> OK: 96 97 00 01 04 05 ... >> Bad: 98 99 02 03 06 07 ... There is also a problem in newlib 1.7.x reported at the same time: >> I found another, that would strike only on 2/29/2000, or other leapyears. >> Only a problem on 1 day. >> >> Joel: FYI, there is a bug in Newlib localtime.c, localtime or (_tm_time). >> Ours is modified for dst and timezones, but the bug was in original source. >> I have not looked at the latest public source (nor do I know where to find >> it).
1998-01-06Fixed spacing.Joel Sherrill1-2/+2
1997-12-22Now generating this file with autoconf to avoid having to embed soJoel Sherrill1-0/+221
much target specific information in the script.
1997-12-22Changed from .align to .p2align to avoid differences in meaning ofJoel Sherrill1-6/+6
.align between i386-rtems (real number on .align) and i386-go32-rtems (power of 2).
1997-12-10Modified a lot of files to take a first cut at supporting building fromJoel Sherrill23-23/+92
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-12-06Moved include of rtems/score/cpu.h to make sure TRUE and FALSE were defined.Joel Sherrill2-4/+4
This simple error resulted in the wrong FP context structure being used for hardware contexts on the m68k. This was a difficult problem to find.
1997-11-30Corrected comment.Joel Sherrill2-6/+1
1997-11-29Patch from Chris Johns to filter out the trace bit on CPU modelsJoel Sherrill1-2/+5
which have hardware support for a separate interrupt stack.
1997-10-08Fixed typo in the pointer to the license terms.Joel Sherrill230-464/+464
1997-10-08Removed include directory at "build" point and the link of this directoryJoel Sherrill18-67/+67
to lib/include. Went to using a PROJECT_INCLUDE variable.
1997-10-06Fixed comment.Joel Sherrill2-2/+2
1997-08-22Corrected bug per Katsutoshi Shibuya's report:Joel Sherrill1-2/+2
The definition of "BEGIN_DATA" should not be null; should be ".data". Also, the definition of "BEGIN_BSS" should be ".bss". For this error, the compiled object has codes that write on the text segment area. It is fatal when the code runs on ROM.
1997-07-31Merged very large and much appreciated patch from Chris JohnsJoel Sherrill1-2/+55
<cjohns@plessey.com.au>. This patch includes the ods68302 bsp, the RTEMS++ class library, and the rtems++ test.
1997-07-10Strip the trace bit from the SR register when dispatching a thread whenJoel Sherrill1-3/+5
exiting from an ISR. This allows the trace bit to be set on a per task basis and tracing to be limited to that task.
1997-07-09Repository damaged -- files readded.Joel Sherrill2-0/+411
1997-07-09Added post switch extension.Joel Sherrill2-0/+10
1997-07-09Added sp, sfc, and fpcsr register defines.Joel Sherrill1-0/+4
1997-05-28Added support for context switching the data used by the gcc m68kJoel Sherrill4-1/+109
software floating point emulation code. Code implemented by Karen Sara Looney <Karen.Looney@colorado.edu> with much email assistance from Joel.
1997-04-22Patch from Chris John <cjohns@awa.com.au> to add use of a select statementJoel Sherrill5-3/+180
in the unix port idle thread task. This should keep the entire application from blocking when any component does a blocking application. Also added TOD_MICROSECONDS_TO_TICKS.
1997-04-22multiprocessing fixed on linux by fixing cpu.c so correct form ofJoel Sherrill1-3/+4
semctl was being invoked.
1997-04-22updated with new license information per Tony Bennett.Joel Sherrill6-62/+19
1997-04-22headers updated to reflect new style copyright notice as partJoel Sherrill231-1131/+1131
of switching to the modified GNU GPL.
1997-04-16Added FPSP support for MC68040Joel Sherrill3-5/+71
1997-04-09added support for tracking thread cpu usage.Joel Sherrill1-0/+2
1997-04-09enhanced printf statementsJoel Sherrill1-4/+4
1997-04-09corrected spacing.Joel Sherrill2-16/+16
1997-04-09added SYSTEM_STATE_SHUTDOWNJoel Sherrill2-0/+2
1997-04-09Added ka9q tcpip stack and network driver for the gen68360. This effortJoel Sherrill12-5/+114
was done based on the 3.6.0 release and had to be autoconf'ed locally. It is turned on is the bsp enables it and it is not explicitly disabled via the configure option --disable-tcpip. As many warnings as possible were removed locally after the code was merged. Only the gen68360 and mvme136 bsps were compiled this way. The ka9q port and network driver were submitted by Eric Norum (eric@skatter.USask.Ca). The network demo programs are not included in the tree at this point.
1997-04-07added initialization of variable to eliminate warning.Joel Sherrill1-1/+1
1997-04-07added ifdef around variables to eliminate warnings when crossJoel Sherrill1-0/+2
1997-04-07added "ifndef" to avoid redefinition warning.Joel Sherrill2-0/+4
1997-04-07added volatile to Switch_necessary structure member to avoid warning.Joel Sherrill1-2/+2
1997-04-07added test to avoid spurious errorJoel Sherrill1-1/+1
1997-04-07added prototype for missing routine.Joel Sherrill1-0/+4
1997-04-07added "return" to eliminate warning.Joel Sherrill1-0/+2
1997-04-07added "ifndef" to avoid redefinition warningJoel Sherrill5-0/+10
1997-04-07added prototypes for two assembly language routines to eliminate warnings.Joel Sherrill1-0/+9
1997-04-07commented out sccs_id to eliminate warning.Joel Sherrill4-12/+26
1997-04-07added plea for someone to implement software stack switching for m68000-ishJoel Sherrill1-0/+3
cores.
1997-04-07Replaced warning message for cpus which do not have hardware supportJoel Sherrill1-2/+3
for an interrupt stack. Hopefully this will encourage someone to implement software stack switching on the m68k.
1997-04-07initialized variable to eliminate warningJoel Sherrill1-1/+3
1997-04-07changed signed int to unsigned to eliminate warningJoel Sherrill1-1/+1
1997-04-07added "ifndef" for ASM to avoid redefinition warnings.Joel Sherrill1-0/+2
1997-04-01This set of changes is the build of what was required to convert toJoel Sherrill28-226/+1604
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-11modified _Chain_Insert_unprotected to have the form required to be usedJoel Sherrill2-4/+4
as the sole statement in an if or else statement
1997-03-11swapped increment of _ISR_Nest_level and _Thread_Dispatch_disable_levelJoel Sherrill1-1/+1