Lawrence Stewart <[EMAIL PROTECTED]> writes: > I suspect that you can't use a file descriptor that was opened in one > thread in a completely different thread, but I'm not sure if this is > true, and if it is true, how to get around it.
A file descriptor is an index into a file table. Different threads have different file tables. If you want to read from or write to files within the kernel, you need to operate directly on vnodes, not on file descriptors. DES -- Dag-Erling Smørgrav - [EMAIL PROTECTED] _______________________________________________ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"