summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/cpu/unix/cpu.h (unfollow)
Commit message (Collapse)AuthorFilesLines
1999-02-18Yet another part of automake VI from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1-1081/+0
> 4) rtems-rc-19990202-0.diff /reorg-score-cpu.sh > > reorg-score-cpu.sh reorganizes the cpu/<cpu>/* subdirectories in a > similar manner than previous reorg scripts did. rtems-rc-19990202-0.diff > contains the diffs after reorg-score-cpu.sh has been run on a > rtems-19981215 snapshot + my patches up to rtems-rc-19990131-2.diff. > > This patch is rather nasty and may break something. However, I've tested > it for about 10 different target/bsp pairs and believe to have shaken > out most bugs. I wonder about the following .h files that were not moved: a29k/asm.h a29k/cpu_asm.h i386/asm.h i960/asm.h m68k/asm.h m68k/m68302.h m68k/m68360.h m68k/qsm.h m68k/sim.h mips64orion/asm.h mips64orion/cpu_asm.h mips64orion/mips64orion.h no_cpu/asm.h no_cpu/cpu_asm.h powerpc/asm.h powerpc/mpc860.h sh/asm.h sparc/asm.h sparc/erc32.h
1998-09-23IDLE task stack size now specified as a field in the CPU Table for allJoel Sherrill1-0/+1
ports.
1998-06-18Added freebsd support from Dario Alcocer <alcocer@connectnet.com>.Joel Sherrill1-0/+9
1998-06-03Added CPU_ISR_PASSES_FRAME_POINTER so some ports could pass just theJoel Sherrill1-0/+8
vector number to user ISR's and other ports could pass both the vector number and a pointer to the ISF.
1998-04-27Added swap of unsigned16Joel Sherrill1-0/+3
1998-03-24Rename hppa1_1 to hppa1.1 and switched to using __XXX__ macros forJoel Sherrill1-10/+10
the CPU family name constants.
1998-02-04Ralf Corsepius noticed that generally was spelled incorrectly.Joel Sherrill1-1/+1
1998-01-20Removed warning per Chris John's suggestion.Joel Sherrill1-1/+1
1997-10-08Fixed typo in the pointer to the license terms.Joel Sherrill1-2/+2
1997-04-22Patch from Chris John <cjohns@awa.com.au> to add use of a select statementJoel Sherrill1-0/+26
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-22updated with new license information per Tony Bennett.Joel Sherrill1-10/+3
1997-04-09Added ka9q tcpip stack and network driver for the gen68360. This effortJoel Sherrill1-0/+17
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-01This set of changes is the build of what was required to convert toJoel Sherrill1-3/+3
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-01-29Added comment.Joel Sherrill1-1/+1
1996-09-18use address object to avoid direct pointer arithmeticJoel Sherrill1-1/+1
1996-05-28split the inclusion of "EXTERN" data based on whether it was sapi,Joel Sherrill1-4/+4
score, rtems api, or posix api related.
1996-05-23updates from Tony Bennett.Joel Sherrill1-2/+2
Broke the setjmp/longjmp pair in the context switch into a separate routine so no code depended on local variables surviving the jump.
1996-04-22added stack allocation fields to the cpu tableJoel Sherrill1-8/+18
updates from Tony Bennett. Most were to insure all variables were properly initialized and to correct the stray signal number reporting.
1996-02-21Dispersal of internal thread handler resulted in IDLE thread becomingJoel Sherrill1-8/+8
part of the Thread Handler. This required the name of the optional CPU dependent IDLE thread implementation to change.
1996-01-15updates from Tony Bennett for PA and UNIX portsJoel Sherrill1-0/+4
1995-10-30SPARC port passes all testsJoel Sherrill1-28/+21
1995-09-27Modified UNIX simulator port so all references to native unixJoel Sherrill1-6/+48
stuff is in the executive source proper in the file cpu.c. This should help avoid conflicts between RTEMS POSIX files and UNIX files.
1995-09-26posix support initially addedJoel Sherrill1-2/+2
1995-09-19Removed a section of code which was "#if 0"'ed.Joel Sherrill1-16/+0
1995-09-11The word "RTEMS" almost completely removed from the core.Joel Sherrill1-2/+4
Configuration Table Template file added and all tests modified to use this. All gvar.h and conftbl.h files removed from test directories. Configuration parameter maximum_devices added. Core semaphore and mutex handlers added and RTEMS API Semaphore Manager updated to reflect this. Initialization sequence changed to invoke API specific initialization routines. Initialization tasks table now owned by RTEMS Tasks Manager. Added user extension for post-switch. Utilized user extensions to implement API specific functionality like signal dispatching. Added extensions to the System Initialization Thread so that an API can register a function to be invoked while the system is being initialized. These are largely equivalent to the pre-driver and post-driver hooks. Added the Modules file oar-go32_p5, modified oar-go32, and modified the file make/custom/go32.cfg to look at an environment varable which determines what CPU model is being used. All BSPs updated to reflect named devices and clock driver's IOCTL used by the Shared Memory Driver. Also merged clock isr into main file and removed ckisr.c where possible. Updated spsize to reflect new and moved variables. Makefiles for the executive source and include files updated to show break down of files into Core, RTEMS API, and Neither. Header and inline files installed into subdirectory based on whether logically in the Core or a part of the RTEMS API.
1995-08-04cleanup and optimization from TonyJoel Sherrill1-14/+2
1995-08-02*** empty log message ***Joel Sherrill1-0/+13
1995-07-20removed junk field in context_controlJoel Sherrill1-1/+0
1995-07-18fixed for LinuxJoel Sherrill1-0/+4
1995-07-18merged Linux UNIX simulator support (C)Joel Sherrill1-1/+24
1995-07-12Ada95, gnat, go32Joel Sherrill1-17/+48
1995-05-24Fully tested on all in-house targetsJoel Sherrill1-3/+5