Mail Archives: djgpp/1998/08/18/09:03:33
On Mon, 17 Aug 1998, grundmann wrote:
> I am programming a programm to sample data and need
> disk i/o with 1,6 MB /s continious throughput.
Does your disk support such high transfer rate? If not, you can never
have it with any compiler.
AFAIK, 1,6MB/s requires a bus-mastering SCSI controller or a very fast IDE
drive.
> Is there a possibility to get that with djgpp ? ( I used normal open
> close write and got 800 k/s -1 MB per /s here at work which is not
> enough ).
Use `_write', not `write'. The former calls DOS directly, without any
additional processing.
- Raw text -