Xref: utzoo comp.os.msdos.misc:2135 comp.os.msdos.programmer:5161 Path: utzoo!utgpu!news-server.csri.toronto.edu!bonnie.concordia.ca!thunder.mcrcim.mcgill.edu!snorkelwacker.mit.edu!apple!usc!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!linac!att!pacbell.com!ucsd!ucbvax!mtxinu!sybase!pluto!ong From: ong@pluto.sybase.com (Ong, Peng Tsin) Newsgroups: comp.os.msdos.misc,comp.os.msdos.programmer Subject: Asynchronous Disk IO in MS-DOS Summary: asynchronous disk io - how to do it? Keywords: asynchronous disk io Message-ID: <12793@sybase.sybase.com> Date: 17 May 91 19:51:36 GMT References: <91130.222203GELDREIC@FRECP12.BITNET> <1991May16.055324.19280@cunixf.cc.columbia.edu> Sender: news@Sybase.COM Organization: Sybase, Inc. Lines: 13 Has anyone had any experience writing programs that do asynchronous disk IO on MS-DOS? What's the best way for doing it? Thanks. pt ------------------- Note: Asynchronous Disk IO is a method of accessing disks where the program that wants to do the accessing starts the read or write tasks and goes on with whatever else it is doing. The system informs the program that it is done through either a polling mechanism (where the program periodically asks the system: "are you done?") or an interrupt mechanism. The idea is that useful computations can be performed when the disk is being accessed.