summaryrefslogtreecommitdiffstats
path: root/c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Corrected call to _CORE_mutex_Seize_interrupt_blocking.Joel Sherrill2000-07-061-2/+5
|
* Modfied to execute faster and have fewer instructions.Joel Sherrill2000-07-061-38/+38
|
* Switched to using isr disable version of _Objects_Get. When theJoel Sherrill2000-07-061-13/+15
| | | | | semaphore/mutex can be obtained immediately, this cuts execution time by 50%.
* Added _Semaphore_Get_interrupt_disable.Joel Sherrill2000-07-061-0/+10
|
* Cleaned up to avoid disruptive use of inline conditionals.Joel Sherrill2000-07-061-18/+16
|
* Switched to using _POSIX_Mutex_Get_interrupt_disable to improve performance.Joel Sherrill2000-07-061-3/+4
|
* Added support for converting a mutex id to a pointer and returningJoel Sherrill2000-07-061-21/+39
| | | | with interrupts disabled.
* Reimplemented _Core_MUTEX_Seize to return with interrupts disabledJoel Sherrill2000-07-062-7/+119
| | | | if the mutex is successfully obtained.
* Added _CORE_semaphore_Seize_isr_disable.Joel Sherrill2000-07-061-0/+56
|
* Added _Objects_Get_isr_disable prototype and added numerous comments.Joel Sherrill2000-07-061-7/+18
|
* Removed unnecessary parentheses.Joel Sherrill2000-07-061-4/+4
|
* Added objjectgetbyisr.cJoel Sherrill2000-07-061-2/+3
|
* The code that attempts to obtain a mutex has now been inlined. TheJoel Sherrill2000-07-061-83/+7
| | | | code remaining here now only blocks.
* Directly index local table to avoid error check.Joel Sherrill2000-07-063-12/+10
|
* New file. Convert ID to pointer and return with interrupts -- notJoel Sherrill2000-07-061-0/+83
| | | | dispatching -- disabled.
* Format of return line changed.Joel Sherrill2000-07-061-3/+3
|
* Patch rtems-rc-20000626-1.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>.Joel Sherrill2000-07-062-6/+6
| | | | | | | | | | | | | | | | | | | | | | Comments follow: Building linux/posix fails due to including lib/include/sys/cdefs.h instead of linux's sys/cdefs.h. AFAIS, this sys/cdefs.h is specific to newlib and should probably not be used on any unix host. Therefore, I changed the relevant Makefile.am/configure.in to condionally install sys/cdefs.h only if newlib is present. This triggered another bug inside of the newlib-check for one of RTEMS target's (Unfortunately I can't remember which - mips/i960 ? ... one of the more exotic ...), for which int func() isn't identical to void func(). Note: This patch needs to be tested under Cygwin and Solaris. I am particularily unsure about Cygwin/posix, as it applies a different version newlib which must not trigger RTEMS newlib check (it is supposed to fail) and if it may need RTEMS's sys/cdefs.h.
* Interrupt stack is allocated in _ISR_Handler_initialization notJoel Sherrill2000-07-0314-14/+14
| | | | _Interrupt_Manager_initialization.
* Added blocked_count field to allow for optimizations.Joel Sherrill2000-07-032-2/+4
|
* Changed extra_system_initialization_stack to extra_mpci_receive_server_stackJoel Sherrill2000-07-031-1/+1
| | | | to be consistent with other ports.
* Patch rtems-rc-20000702-1.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-07-031-7/+15
| | | | | that is a hack to workaround a switch generation compiler bug for the SH2 and cleaned up some warnings.
* Fixed stat_ino should be st_ino.Joel Sherrill2000-07-023-3/+3
|
* Patch from Chris Johns <cjohns@cybertec.com.au> so the web serverJoel Sherrill2000-06-302-3/+12
| | | | shuts down on error -- not exitting the system.
* Patch from Chris Johns <cjohns@cybertec.com.au> so the directoryJoel Sherrill2000-06-303-3/+3
| | | | read function in the IMFS properly returns the inode number.
* Patch from Chris Johns <cjohns@cybertec.com.au> to add support forJoel Sherrill2000-06-306-39/+51
| | | | | stat()'ing a symbolic link. This is needed to support the port of the BSD commands like ls to RTEMS.
* Patch from Chris Johns <cjohns@cybertec.com.au> to add fchdir()Joel Sherrill2000-06-306-2/+146
| | | | functionality to libc and update TODO.
* This is the initial addition of the port of RTEMS to theJoel Sherrill2000-06-2918-2/+2037
| | | | | | | | | | | | | Hitachi H8 family. This port was done by Philip Quaife <philip@qs.co.nz> of Q Solutions and sponsored by Comnet Technologies Ltd. The port was done based on RTEMS 3.5.1 to a Hitach H8300H. The port was updated to RTEMS 4.5 style Makefiles/configure by Joel Sherrill <joel@OARcorp.com>. While doing this Joel added support for the h8300-rtems to binutils, gcc, newlib, and gdb. NOTE: Philip submitted a BSP for a Hitachi evaluation board which is being merged as a separate entity.
* Added H8 as IEEE whether this is true or not.Joel Sherrill2000-06-292-0/+2
|
* Disabled #ident since the h8300-rtems binutils do not like theJoel Sherrill2000-06-292-2/+2
| | | | generated assembly from it.
* Corrected prototype for xdrrec_endofrecord to match C body.Joel Sherrill2000-06-292-2/+2
|
* Added RTEMS_CPU_HAS_16_BIT_ADDRESSES constant to disable codeJoel Sherrill2000-06-292-0/+12
| | | | | | | | that breaks when the target has 16 bit address space. One of the H8 multilibs is a 16-bit address space CPU. When a real attempt is made to support this CPU model, the code that assumes an address is 32 bits will have to change. This constant is probably not flagging all impacted code.
* Patch from Eric Valette to do some cleanup.Joel Sherrill2000-06-293-9/+16
|
* Patch from Chris Johns <cjohns@cybertec.com.au> to make sure theJoel Sherrill2000-06-292-2/+4
| | | | ttyHead back link is set.
* Patch from Eric Valette <valette@crf.canon.fr> to make librdbg workJoel Sherrill2000-06-291-8/+10
| | | | with the new RPC code.
* Patch rtems-rc-20000627-2 from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-06-294-17/+3
| | | | | | | | | | | | that does some cleanup: * remove c/src/make/main.cfg.in (obsolete, unused) and any reference to it. * remove RTEMS_BSP_SPECS from c/src/make/custom/default.cfg.in (unused) Notes: All files being effected by this patch are only used when building RTEMS, therefore this patch should not have any side-effects outside of the source- rsp. build-tree.
* Removed as it was orphaned by previous patches.Joel Sherrill2000-06-261-19/+0
|
* Patch from Chris Johns <cjohns@cybertec.com.au> andJoel Sherrill2000-06-263-0/+9
| | | | | | | | | | | Jennifer Averett <jennifer.averett@oarcorp.com> to fix appends (O_APPEND at open time) on in-memory files. A call such as: fd = open (file, O_APPEND | O_WRONLY); did not append to the end of the file.
* Patch from Chris Johns <cjohns@cybertec.com.au> andJoel Sherrill2000-06-263-3/+3
| | | | | Jennifer Averett <jennifer.averett@oarcorp.com> to make sure "/" is created with S_IFDIR set.
* Patch from John Cotton <john.cotton@nrc.ca> to correct style ofJoel Sherrill2000-06-161-16/+16
| | | | names to be rtems_PACKAGE_method.
* New file.Joel Sherrill2000-06-161-0/+2
|
* Patch rtems-rc-20000616-2-cvs.diff from Ralf CorsepiusJoel Sherrill2000-06-161-1/+2
| | | | | <corsepiu@faw.uni-ulm.de> to add -qnolinkcmds to bsp_specs like other BSPs.
* Patch rtems-rc-20000616-1-cvs.diff from Ralf CorsepiusJoel Sherrill2000-06-161-7/+7
| | | | | <corsepiu@faw.uni-ulm.de> to use __i386__ instead of __i386 and i386 to be able to compile this file with -ansi.
* Patch rtems-rc-20000615-4-cvs.diff from Ralf CorsepiusJoel Sherrill2000-06-163-23/+2
| | | | | | | | | | | | <corsepiu@faw.uni-ulm.de> to fix the following: * lib/configure.in actually is libc's configure.in, so let it depend on libc not on lib [In my Cygnus/GNU configuration scheme, lib/include and lib/libc are treated as one unit, while libcpu and libbsp are treated as separate units.] * Allow empty --enable-bare* flags for the bare bsp. The formerly used scheme is too strict for our multilib experiments.
* Modified to pick up components from libcpu.Joel Sherrill2000-06-152-1/+2
|
* rxgen960 compiles and links.Joel Sherrill2000-06-158-16/+88
|
* Remove pragma align 4Joel Sherrill2000-06-151-2/+0
|
* Make ppc603e pick up caching code.Joel Sherrill2000-06-151-0/+1
|
* Pick up caching code.Joel Sherrill2000-06-151-1/+2
|
* Use correct name for caching routines.Joel Sherrill2000-06-151-3/+2
|
* Fixing warning obtained by some users.Joel Sherrill2000-06-152-0/+8
|