> Any NI techs have any insight as to why? Is there some Endian
> conversion being done internally? Any workarounds?
Well, there isn't any endian conversions going on. Both the file and
Mac memory model are big-endian. But the classic Mac file I/O is pretty
slow. The only thing I can recommend is to do the reads in larger
blocks. I've also heard some people claim that running their file I/O
bound apps underneath OSX will speed things up. In other words, running
an OS9 app underneath OSX is actually more efficient because it replaces
all of the OS9 code. So, you could give that a shot.
Greg McKaskle