This is an archive of CompuServe forum messages from 1985 to 1995, as saved in transcripts by John Foust.
Search Results (3 messages)
#Scsi / Posix
Message #51186
Is there a ready way to communicate with SCSI devices in POSIX apps? The CreatFile () function normally used doesn't seem to be in the Posix libraries. — Mark There is 1 Reply.
>> I don't know of an elegant way to track down such bugs .. Actually, the CenterLine (former Sabre) C debugger quite reliably reports such bugs, it just doesn't work under NT (it's a Unix app). An NT debugger with similar capabilities would be highly desirable. — Mark
#Array dim bugs
Message #50295
A general debugging question if I may: Suppose the sources of an NT C program are split between 2 files. Suppose the 1st file declares a 1 dimensional array: int ary [10]; Suppose the 2nd file incorrectly references the array as 2 dimensional: extern int ary [] [8]; This is…