Subject: Re: When is ELF coming?
To: None <jb@cimlogic.com.au>
From: Jeffrey Hsu <hsu@freefall.freebsd.org>
List: port-alpha
Date: 11/20/1996 19:00:31
> libpthread needs to supply a function called "read" that provides
> a blocking interface to the programmer, but actually does non-blocking
> calls to the kernel.
If the file descriptor has been set to non-blocking mode, _sys_read
may not work as expected, no? Another example would be write(), which
is used internally inside libc. Even if, using weak symbols, the libc
routine correctly calls _sys_write(), it may not be expecting an EAGAIN
error return.