summaryrefslogtreecommitdiffstats
path: root/c/src (unfollow)
Commit message (Collapse)AuthorFilesLines
1998-12-03Renamed all directories to start with psx.Jennifer Averett4-4/+4
1998-12-03Added a posix time test.Jennifer Averett1-2/+2
Renamed all directories to start with psx.
1998-12-03Added imfs_fdatasync routine that gets called from both fdatasync and datasync.Jennifer Averett3-0/+78
1998-12-03Added a imfs fdatasync routine that gets called for fdatasync and datasync.Jennifer Averett4-5/+16
1998-12-03Added source for F_DUPFD.Jennifer Averett2-24/+36
1998-12-03Modifications for RTEMS_UNIX.Jennifer Averett12-3/+57
1998-12-03Added a imfs fdatasync routine that gets called for fdatasync and datasync.Jennifer Averett1-13/+24
Modifications for RTEMS_UNIX.
1998-12-03Modified to support test names longer than two characters plus theJoel Sherrill1-1/+1
test suite designator. In English, we now support psxfile in addition to psx11.
1998-12-03Insure that the same output occurs when multiprocessing is disabled.Joel Sherrill5-1/+41
1998-12-03Moved cpuuse.h to rtems subdirectory.Joel Sherrill1-1/+1
1998-12-03Moved stackchk.h to rtems subdirectory.Joel Sherrill8-16/+26
1998-12-03Increased default amount of RAM.Joel Sherrill1-1/+1
1998-12-03Removed reference to stackchk.h.Joel Sherrill1-4/+0
1998-12-03Don't build libchip if we are targetting UNIX.Joel Sherrill1-1/+6
1998-12-03Corrected spacing.Joel Sherrill1-1/+1
1998-12-03Corrected ifdef on RTEMS_MULTIPROCESSING so the queue is actually closed.Joel Sherrill1-2/+4
1998-12-01Removed reference to libpurify.Joel Sherrill2-4/+4
1998-12-01Include files now installed as <rtems/*.h>.Joel Sherrill10-13/+11
1998-12-01Removed unused file.Joel Sherrill4-194/+2
Include files now installed as <rtems/*.h>.
1998-11-23New files added as part of file system infrastructure effort.Joel Sherrill4-0/+84
1998-11-23Added base version of file system infrastructure. This includes a majorJoel Sherrill232-1862/+22837
overhaul of the RTEMS system call interface. This base file system is the "In-Memory File System" aka IMFS. The design and implementation was done by the following people: + Joel Sherrill (joel@OARcorp.com) + Jennifer Averett (jennifer@OARcorp.com) + Steve "Mr Mount" Salitasc (salitasc@OARcorp.com) + Kerwin Wade (wade@OARcorp.com) PROBLEMS ======== + It is VERY likely that merging this will break the UNIX port. This can/will be fixed. + There is likely some reentrancy/mutual exclusion needed. + Eventually, there should be a "mini-IMFS" description table to eliminate links, symlinks, etc to save memory. All you need to have "classic RTEMS" functionality is technically directories and device IO. All the rest could be left out to save memory.
1998-11-23Added new tests in support of the file system infrastructure.Joel Sherrill4-0/+218
1998-11-23Added tests in support of the file system infrastructure.Joel Sherrill28-1/+5240
1998-11-23Removed.Joel Sherrill2-97/+1
1998-11-23Upped the memory to 8 Mbytes.Joel Sherrill1-1/+2
1998-11-23Added --disable-multiprocessing flag and modified a lot of files to makeJoel Sherrill92-192/+830
it work.
1998-11-23Added networking.Joel Sherrill2-5/+10
1998-11-23New network driver from Erik Ivanenko <erik.ivanenko@utoronto.ca>.Joel Sherrill4-0/+3113
1998-11-19Renamed exception constants per requests from Erik IvanenkoJoel Sherrill1-19/+19
<erik.ivanenko@utoronto.ca> and Eric Valette <valette@crf.canon.fr>.
1998-11-19Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1-1/+1
Here is a cosmetic patch which corrects a few spelling problems in parts written by me. Apparently, I must have written these under the influence of ether (:-)
1998-11-19Patch from Eric Norum <eric@skatter.usask.ca>:Joel Sherrill21-527/+689
1) Socket timeout field changed from `short' to `long'. This makes longer timeouts possible. With a 1 kHz system clock the old system allowed timeouts only up to a little over 30 seconds! This change is a slightly cleaned-up version of the patch proposed by Ian Lance Taylor. 2) Major changes to BOOTP/DHCP reply handling. Now supports much of RFC2132. These changes were done at the request of, and with the assistance of, Erik Ivanenko. If you're making changes, you might want to change the network supplement Essentially just do a global search and replace of BOOTP with BOOTP/DHCP.
1998-10-29changed version to 4.0.0-AFCCJoel Sherrill2-2/+2
1998-10-29Cleanup.Joel Sherrill1-1/+6
1998-10-28Patch from Ian Lance Taylor <ian@airs.com>:Joel Sherrill1-8/+60
The RTEMS i386 stub in c/src/lib/libbsp/i386/shared/comm/i386-stub.c doesn't take advantage of some of the newer gdb remote features which permits shorter and fewer packets. Here is a patch which uses the 'T' response to report the registers which gdb generally needs, and implements the 'P' request to set only a single register. The general effect is to avoid sending all the register contents back and forth between gdb and the stub every time the stub stops. This also implements the 'D' request which handles the gdb detach command, so you can cleanly quit out of the debugger and leave the target board running.
1998-10-28Patch from Ian Lance Taylor <ian@airs.com>.Joel Sherrill1-11/+19
I just happened across the sync_io support in c/src/exec/score/cpu/unix/cpu.c (is this documented anywhere?). That looked more useful than the signal driven I/O I was using before, so I tried it. I ran across a few bugs in the way it uses select. Select changes its fd_set arguments, so you can't use global variables for them. You have to copy them into local variables first. If select returns -1 with errno set to EINTR, then it has not changed any of the fd_sets. You can't start looking at them. When clearing a descriptor, the code has the usual select off by one error when setting sync_io_nfds. I don't see how this code could ever have worked correctly. I have appended a patch for the problems I found.
1998-10-28Merged Vista SCORE603e, Radstone PPCn_60x, and DY-4 DMV177 BSPs alongJoel Sherrill11-10/+23
with libchip.
1998-10-28Removed per Eric NorumJoel Sherrill1-62/+0
1998-10-27changed version to 4.0.0Joel Sherrill2-2/+2
1998-10-27Spacing.Joel Sherrill1-1/+0
1998-10-26Merged base line score603e BSPJoel Sherrill1-28/+28
1998-10-26changed version to 4.0.0-beta4bJoel Sherrill2-2/+2
1998-10-26Patches done in conjunction with Juan Zamorano FloresJoel Sherrill7-14/+31
<jzamora@avellano.datsi.fi.upm.es>. He debugged enough to let me know what was wrong and I supplied the code. :)
1998-10-22Typos spotted by Ian Lance Taylor <ian@airs.com>.Joel Sherrill1-2/+2
1998-10-22Added missing .rodata and *(.gnu.linkonce.r*) section.Joel Sherrill1-0/+4
1998-10-22Patch from Ian Lance Taylor <ian@airs.com>:Joel Sherrill1-0/+1
I noticed that in the 4.0.0-beta4a tar file, the file c/src/lib/libbsp/i386/pc386/startup/linkcmds was changed so that it no longer handles the .gnu.linkonce.r* sections. The appended patch was applied to the file. I'm not sure why. I think this patch should probably be backed out, although it's not critical for the release.
1998-10-22Patch from Eric Norum.Joel Sherrill1-4/+6
1998-10-22Changed all of these to stubs.Joel Sherrill14-806/+68
1998-10-15changed version to 4.0.0-beta4aJoel Sherrill2-2/+2
1998-10-15Patch from Thomas Doerfler <td@imd.m.isar.de> to include theJoel Sherrill1-1/+2
ppc403 interrupt control libcpu component.
1998-10-15Uncommented the conditional stuff for "good gas 16 bit code".Joel Sherrill1-2/+2