summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Big patch form Ralf Corsepius described in this email:Joel Sherrill1998-01-3023-92/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Change to remove warning on glibc2 systems per Ralf Corsepius'sJoel Sherrill1998-01-281-1/+6
| | | | suggestion.
* Solaris port updates from Chris JohnsJoel Sherrill1998-01-231-10/+0
|
* Cleaned up a bit.Joel Sherrill1998-01-231-9/+31
|
* Removed warning per Chris Johns' suggestion.Joel Sherrill1998-01-204-4/+4
|
* Removed warning per Chris John's suggestion.Joel Sherrill1998-01-201-1/+1
|
* Removed CONFIG_DIR and PROJECT_HOME directories.Joel Sherrill1998-01-2023-23/+23
|
* Error reported by Duncan Smith <dds@flavors.com>:Joel Sherrill1998-01-152-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).
* Fixed spacing.Joel Sherrill1998-01-061-2/+2
|
* Now generating this file with autoconf to avoid having to embed soJoel Sherrill1997-12-221-0/+221
| | | | much target specific information in the script.
* Changed from .align to .p2align to avoid differences in meaning ofJoel Sherrill1997-12-221-6/+6
| | | | | .align between i386-rtems (real number on .align) and i386-go32-rtems (power of 2).
* Modified a lot of files to take a first cut at supporting building fromJoel Sherrill1997-12-1023-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).
* Moved include of rtems/score/cpu.h to make sure TRUE and FALSE were defined.Joel Sherrill1997-12-062-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.
* Corrected comment.Joel Sherrill1997-11-302-6/+1
|
* Patch from Chris Johns to filter out the trace bit on CPU modelsJoel Sherrill1997-11-291-2/+5
| | | | which have hardware support for a separate interrupt stack.
* Fixed typo in the pointer to the license terms.Joel Sherrill1997-10-08230-464/+464
|
* Removed include directory at "build" point and the link of this directoryJoel Sherrill1997-10-0818-67/+67
| | | | | | to lib/include. Went to using a PROJECT_INCLUDE variable.
* Fixed comment.Joel Sherrill1997-10-062-2/+2
|
* Corrected bug per Katsutoshi Shibuya's report:Joel Sherrill1997-08-221-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.
* Merged very large and much appreciated patch from Chris JohnsJoel Sherrill1997-07-311-2/+55
| | | | | <cjohns@plessey.com.au>. This patch includes the ods68302 bsp, the RTEMS++ class library, and the rtems++ test.
* Strip the trace bit from the SR register when dispatching a thread whenJoel Sherrill1997-07-101-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.
* Repository damaged -- files readded.Joel Sherrill1997-07-092-0/+411
|
* Added post switch extension.Joel Sherrill1997-07-092-0/+10
|
* Added sp, sfc, and fpcsr register defines.Joel Sherrill1997-07-091-0/+4
|
* Added support for context switching the data used by the gcc m68kJoel Sherrill1997-05-284-1/+109
| | | | | | software floating point emulation code. Code implemented by Karen Sara Looney <Karen.Looney@colorado.edu> with much email assistance from Joel.
* Patch from Chris John <cjohns@awa.com.au> to add use of a select statementJoel Sherrill1997-04-225-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.
* multiprocessing fixed on linux by fixing cpu.c so correct form ofJoel Sherrill1997-04-221-3/+4
| | | | semctl was being invoked.
* updated with new license information per Tony Bennett.Joel Sherrill1997-04-226-62/+19
|
* headers updated to reflect new style copyright notice as partJoel Sherrill1997-04-22231-1131/+1131
| | | | of switching to the modified GNU GPL.
* Added FPSP support for MC68040Joel Sherrill1997-04-163-5/+71
|
* added support for tracking thread cpu usage.Joel Sherrill1997-04-091-0/+2
|
* enhanced printf statementsJoel Sherrill1997-04-091-4/+4
|
* corrected spacing.Joel Sherrill1997-04-092-16/+16
|
* added SYSTEM_STATE_SHUTDOWNJoel Sherrill1997-04-092-0/+2
|
* Added ka9q tcpip stack and network driver for the gen68360. This effortJoel Sherrill1997-04-0912-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.
* added initialization of variable to eliminate warning.Joel Sherrill1997-04-071-1/+1
|
* added ifdef around variables to eliminate warnings when crossJoel Sherrill1997-04-071-0/+2
|
* added "ifndef" to avoid redefinition warning.Joel Sherrill1997-04-072-0/+4
|
* added volatile to Switch_necessary structure member to avoid warning.Joel Sherrill1997-04-071-2/+2
|
* added test to avoid spurious errorJoel Sherrill1997-04-071-1/+1
|
* added prototype for missing routine.Joel Sherrill1997-04-071-0/+4
|
* added "return" to eliminate warning.Joel Sherrill1997-04-071-0/+2
|
* added "ifndef" to avoid redefinition warningJoel Sherrill1997-04-075-0/+10
|
* added prototypes for two assembly language routines to eliminate warnings.Joel Sherrill1997-04-071-0/+9
|
* commented out sccs_id to eliminate warning.Joel Sherrill1997-04-074-12/+26
|
* added plea for someone to implement software stack switching for m68000-ishJoel Sherrill1997-04-071-0/+3
| | | | cores.
* Replaced warning message for cpus which do not have hardware supportJoel Sherrill1997-04-071-2/+3
| | | | | for an interrupt stack. Hopefully this will encourage someone to implement software stack switching on the m68k.
* initialized variable to eliminate warningJoel Sherrill1997-04-071-1/+3
|
* changed signed int to unsigned to eliminate warningJoel Sherrill1997-04-071-1/+1
|
* added "ifndef" for ASM to avoid redefinition warnings.Joel Sherrill1997-04-071-0/+2
|