Fix use of the close system call.
authorTaylor R Campbell <campbell@mumble.net>
Fri, 10 Jun 2011 00:33:50 +0000 (00:33 +0000)
committerTaylor R Campbell <campbell@mumble.net>
Fri, 10 Jun 2011 00:51:26 +0000 (00:51 +0000)
commit3683373013dca9fe379d4361be85146d88c61e14
tree934180dbd4c436bc9ccebc0313198777adff9309
parente324cd3975042e9ee698c5953c84211c0a8d43b1
Fix use of the close system call.

When close returns, it guarantees that the file descriptor given will
be closed, even if it fails.  (The documentation is extremely poor,
but this is what every operating system does.)  Consequently, it is a
bug to retry close.  Every use now either ignores the return value of
close or takes a specific action based on it; it is incorrect to use
STD_VOID_SYSTEM_CALL with close.

Some calls that ignore the return value really need to check for
EINTR and deliver pending interrupts, but I'll get to that later.
src/microcode/ux.c
src/microcode/uxfile.c
src/microcode/uxfs.c
src/microcode/uxio.c
src/microcode/uxproc.c
src/microcode/uxterm.c