Mercurial > ecos
view packages/net/tcpip/current/doc/close.man @ 3292:7f8e529b4d82 default tip
Fix FREESCALE_EDMA_NBYTES_MLOFFYES_MLOFF() so it works with negative offsets.
| author | vae |
|---|---|
| date | Wed, 29 Apr 2015 23:31:48 +0000 |
| parents | ced4577552cd |
| children |
line wrap: on
line source
NAME close - close a file descriptor SYNOPSIS int close(int fd); DESCRIPTION close closes a file descriptor, so that it no longer refers to any file and may be reused. If fd is the last copy of a particular file descriptor the resources associated with it are freed. RETURN VALUE close returns zero on success, or -1 if an error occurred. ERRORS EBADF fd isn't a valid open file descriptor.
