Query: closefrom
OS: netbsd
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CLOSEFROM(3) BSD Library Functions Manual CLOSEFROM(3)NAMEclosefrom -- delete many descriptorsSYNOPSIS#include <unistd.h> int closefrom(int fd);DESCRIPTIONThe closefrom() call deletes all descriptors numbered fd and higher from the per-process file descriptor table. It is effectively the same as calling close(2) on each descriptor.RETURN VALUESUpon successful completion, a value of 0 is returned. Otherwise, a value of -1 is returned and errno is set to indicate the error.ERRORSclosefrom() will fail if: [EBADF] fd is invalid. [EINTR] An interrupt was received.SEE ALSOclose(2)BSDJune 1, 2004 BSD
| Related Man Pages | 
|---|
| dup2(2) - redhat | 
| fdwalk(3c) - opensolaris | 
| posix_spawn_file_actions_addclosefrom_np(3c) - opensolaris | 
| close(2) - freebsd | 
| closefrom(3c) - sunos | 
| Similar Topics in the Unix Linux Community | 
|---|
| Memory Leaks | 
| Better to Use Return Code or wc -l Output? | 
| RFC - Korn shell prompt | 
| Make bold chars in UNIX | 
| Grep command to show the number of results |