summaryrefslogtreecommitdiffstats
path: root/c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Updated scn files to match present expected test output.Jennifer Averett1998-12-034-11/+267
|
* Renamed all directories to start with psx.Jennifer Averett1998-12-034-4/+4
|
* Added a posix time test.Jennifer Averett1998-12-031-2/+2
| | | | Renamed all directories to start with psx.
* Added imfs_fdatasync routine that gets called from both fdatasync and datasync.Jennifer Averett1998-12-033-0/+78
|
* Added a imfs fdatasync routine that gets called for fdatasync and datasync.Jennifer Averett1998-12-034-5/+16
|
* Added source for F_DUPFD.Jennifer Averett1998-12-032-24/+36
|
* Modifications for RTEMS_UNIX.Jennifer Averett1998-12-0312-3/+57
|
* Added a imfs fdatasync routine that gets called for fdatasync and datasync.Jennifer Averett1998-12-031-13/+24
| | | | Modifications for RTEMS_UNIX.
* Modified to support test names longer than two characters plus theJoel Sherrill1998-12-031-1/+1
| | | | | test suite designator. In English, we now support psxfile in addition to psx11.
* Insure that the same output occurs when multiprocessing is disabled.Joel Sherrill1998-12-035-1/+41
|
* Moved cpuuse.h to rtems subdirectory.Joel Sherrill1998-12-031-1/+1
|
* Moved stackchk.h to rtems subdirectory.Joel Sherrill1998-12-038-16/+26
|
* Increased default amount of RAM.Joel Sherrill1998-12-031-1/+1
|
* Removed reference to stackchk.h.Joel Sherrill1998-12-031-4/+0
|
* Don't build libchip if we are targetting UNIX.Joel Sherrill1998-12-031-1/+6
|
* Corrected spacing.Joel Sherrill1998-12-031-1/+1
|
* Corrected ifdef on RTEMS_MULTIPROCESSING so the queue is actually closed.Joel Sherrill1998-12-031-2/+4
|
* Removed reference to libpurify.Joel Sherrill1998-12-012-4/+4
|
* Include files now installed as <rtems/*.h>.Joel Sherrill1998-12-0110-13/+11
|
* Removed unused file.Joel Sherrill1998-12-014-194/+2
| | | | Include files now installed as <rtems/*.h>.
* New files added as part of file system infrastructure effort.Joel Sherrill1998-11-234-0/+84
|
* Added base version of file system infrastructure. This includes a majorJoel Sherrill1998-11-23232-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.
* Added new tests in support of the file system infrastructure.Joel Sherrill1998-11-234-0/+218
|
* Added tests in support of the file system infrastructure.Joel Sherrill1998-11-2328-1/+5240
|
* Removed.Joel Sherrill1998-11-232-97/+1
|
* Upped the memory to 8 Mbytes.Joel Sherrill1998-11-231-1/+2
|
* Added --disable-multiprocessing flag and modified a lot of files to makeJoel Sherrill1998-11-2392-192/+830
| | | | it work.
* Added networking.Joel Sherrill1998-11-232-5/+10
|
* New network driver from Erik Ivanenko <erik.ivanenko@utoronto.ca>.Joel Sherrill1998-11-234-0/+3113
|
* Renamed exception constants per requests from Erik IvanenkoJoel Sherrill1998-11-191-19/+19
| | | | <erik.ivanenko@utoronto.ca> and Eric Valette <valette@crf.canon.fr>.
* Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1998-11-191-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 (:-)
* Patch from Eric Norum <eric@skatter.usask.ca>:Joel Sherrill1998-11-1921-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.
* changed version to 4.0.0-AFCCJoel Sherrill1998-10-292-2/+2
|
* Cleanup.Joel Sherrill1998-10-291-1/+6
|
* Patch from Ian Lance Taylor <ian@airs.com>:Joel Sherrill1998-10-281-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.
* Patch from Ian Lance Taylor <ian@airs.com>.Joel Sherrill1998-10-281-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.
* Merged Vista SCORE603e, Radstone PPCn_60x, and DY-4 DMV177 BSPs alongJoel Sherrill1998-10-2812-10/+24
| | | | with libchip.
* Removed per Eric NorumJoel Sherrill1998-10-281-62/+0
|
* changed version to 4.0.0Joel Sherrill1998-10-272-2/+2
|
* Spacing.Joel Sherrill1998-10-271-1/+0
|
* Merged base line score603e BSPJoel Sherrill1998-10-261-28/+28
|
* changed version to 4.0.0-beta4bJoel Sherrill1998-10-262-2/+2
|
* Patches done in conjunction with Juan Zamorano FloresJoel Sherrill1998-10-267-14/+31
| | | | | <jzamora@avellano.datsi.fi.upm.es>. He debugged enough to let me know what was wrong and I supplied the code. :)
* Updated for mvme136.Joel Sherrill1998-10-261-1/+1
|
* Updated the date.Joel Sherrill1998-10-261-2/+1
|
* Typos spotted by Ian Lance Taylor <ian@airs.com>.Joel Sherrill1998-10-221-2/+2
|
* Added missing .rodata and *(.gnu.linkonce.r*) section.Joel Sherrill1998-10-221-0/+4
|
* Patch from Ian Lance Taylor <ian@airs.com>:Joel Sherrill1998-10-221-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.
* Patch from Eric Norum.Joel Sherrill1998-10-221-4/+6
|
* Changed all of these to stubs.Joel Sherrill1998-10-2214-806/+68
|