summaryrefslogtreecommitdiffstats
path: root/c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* changed version to 19990210Joel Sherrill1999-02-101-1/+1
|
* POSIX timer support.Joel Sherrill1999-02-101-1/+1
|
* Added this file.Joel Sherrill1999-02-101-0/+8
|
* Don't build spfatal since it won't run anyway.Joel Sherrill1999-02-101-1/+1
|
* Changed file name.Joel Sherrill1999-02-101-2/+2
|
* Set the read/write offset to 0 when the file is opened. The ACVC had a testJoel Sherrill1999-02-102-0/+2
| | | | | that performed the sequence open/write/close/open/read/close on a file. It did not get the correct result since the file descriptor was reused.
* Corrected multiple places the file size was not being properly updated.Joel Sherrill1999-02-103-6/+24
|
* Added getcwd().Joel Sherrill1999-02-103-1/+561
|
* POSIX timer support modifications.Joel Sherrill1999-02-103-4/+16
|
* Comments fixed after problem report from Ian Lance Taylor <ian@airs.com>.Joel Sherrill1999-02-101-19/+10
|
* Split SONIC chip into appropriate files for libchip'ing. The portableJoel Sherrill1999-02-0517-181/+2445
| | | | | | portion is now in the libchip tree and the dmv177 configuration is in the dmv177 bsp. The performance impact of libchip'ing this driver was minimal.
* Patch from Eric Norum to correct bug induced by select() patch.Joel Sherrill1999-02-056-15/+33
|
* Corrected spacing and added some new error checks that were neededJoel Sherrill1999-02-057-57/+77
| | | | to avoid dereferencing NULLs.
* Added optional data and instruction caching enable calls.Joel Sherrill1999-02-051-0/+13
|
* Added caching enable routines.Joel Sherrill1999-02-051-1/+1
|
* Reorganized into libchip style but not yet split out into multiple filesJoel Sherrill1999-02-041-152/+206
| | | | and placed in the right shareable directories.
* Works great now.Joel Sherrill1999-02-041-10/+27
|
* Added printf()'s that can be uncommented to trace MBUF operations. ThisJoel Sherrill1999-02-043-0/+9
| | | | is very useful when debugging a device driver.
* Modifed to reflect transition from device driver to file system.Joel Sherrill1999-02-043-123/+12
|
* Added debug printf()'s that are commented out. Uncommenting theseJoel Sherrill1999-02-043-0/+9
| | | | | | allows one to trace the enqueueing and dequeueing of messages. This can be used to insure that packets are getting to the boundary between the network stack and the device driver.
* Added PowerPC specific header checksum code.Joel Sherrill1999-02-043-102/+15
|
* Added PowerPC specific header checksum code.Joel Sherrill1999-02-043-12/+183
| | | | Added volatile to i386 assembly statements in header checksum code.
* Debugged and now works except for handling of minor number.Joel Sherrill1999-02-043-939/+1287
|
* Modified to include comments on how to get TCPDEBUG turned on andJoel Sherrill1999-02-046-3/+33
| | | | printing messages.
* Patch from John S Gwynne <jsg@donet.com> for malloctest. His comments:Joel Sherrill1999-02-032-6/+12
| | | | | | | | | | I have a few patches for the efi332 bsp. If you let me know when you expect the next snapshot release, I will try to have them to you before then. Also, the malloctest has some problems that I would think would prevent it from running on almost any platform. I have enclose patches below to fix (1) Task_id and Task_name dimensioning, (2) end of test message, (3) the amount of memory malloc'ed, and (4) retry on unsuccessful (out of memory) molloc's.
* POSIX Timers submitted by Juan Zamorano FloresJoel Sherrill1999-02-037-11/+1014
| | | | <jzamora@avellano.datsi.fi.upm.es>.
* New test from Juan Zamorano Flores <jzamora@avellano.datsi.fi.upm.es>Joel Sherrill1999-02-031-1/+1
| | | | that is part of the addition of POSIX timers.
* New files from Juan Zamorano Flores <jzamora@avellano.datsi.fi.upm.es>Joel Sherrill1999-02-034-0/+508
| | | | that are part of the addition of POSIX timers.
* New file.Joel Sherrill1999-02-021-0/+61
|
* Added debug #define and commented it out.Joel Sherrill1999-02-023-0/+3
|
* Added PowerPC specific in_cksum file.Joel Sherrill1999-02-023-0/+12
|
* New file. Based on the i386 version.Joel Sherrill1999-02-023-0/+606
|
* Added debug print routines for TX and RX descriptors.Joel Sherrill1999-02-021-65/+89
| | | | | Fixed bug where only the mbuf associated with the first TX fragment was being freed.
* Converted from DOS text file.Joel Sherrill1999-02-021-373/+373
|
* Removed unneeded include of libio_.h.Joel Sherrill1999-01-311-2/+0
|
* Prepended macro variables with "_" to avoid name conflicts in expansions.Joel Sherrill1999-01-313-234/+234
|
* Added bump buffer.Joel Sherrill1999-01-312-2/+4
|
* Added dump buffer.Joel Sherrill1999-01-311-1/+1
|
* Can send and receive packets but fails when TDA wraps. There appearsJoel Sherrill1999-01-312-45/+113
| | | | to be a problem with overwriting the TX descriptors during an RX.
* Split psignal.c into many more files. This reduced the amount ofJoel Sherrill1999-01-3122-919/+1350
| | | | | object code that has to be loaded just for initializing the signal manager.
* New files added to ease debugging.Joel Sherrill1999-01-316-0/+302
|
* Patch from Eric Norum <eric@skatter.usask.ca> to avoid dereferencing aJoel Sherrill1999-01-283-3/+12
| | | | NULL pointer.
* Patch from Eric Norum <eric@skatter.usask.ca> to set more flags inJoel Sherrill1999-01-282-4/+4
| | | | rtems_bsdnet_makeFdForSocket().
* Added include of <rtems/posix/priority.h> so a macro would expandJoel Sherrill1999-01-261-0/+1
| | | | and eliminate a link error.
* Changed prototype of rtems_bsdnet_makeFdForSocket to (void *) pointerJoel Sherrill1999-01-263-3/+3
| | | | so that the libc code did not have to know about (struct socket).
* Switched from printf() to puts().Joel Sherrill1999-01-263-3/+3
|
* Added libio_sockets.c to hold support routines for networking code.Joel Sherrill1999-01-263-1/+117
|
* Added prototype information about the SONIC driver.Joel Sherrill1999-01-261-0/+9
|
* Split most of POSIX Threads Manager into multiple files.Joel Sherrill1999-01-2531-958/+1362
|
* Added enough prototypes to allow most of POSIX Threads Manager to beJoel Sherrill1999-01-251-0/+26
| | | | split into multiple files.