Sponsored Content
Full Discussion: file descriptors
Top Forums UNIX for Dummies Questions & Answers file descriptors Post 46836 by fpmurphy on Tuesday 27th of January 2004 06:46:14 PM
Old 01-27-2004
Note that processes do not have a limit of 20 file descriptors
as suggested in your mail - rather the limit is OPEN_MAX.

Here is the formal POSIX definition of a file descriptor:

A per-process unique, non-negative integer used to identify an open file for the purpose of file access. The value of a file descriptor is from zero to OPEN_MAX. A process can have no more than OPEN_MAX file descriptors open simultaneously.

Note also the difference between file DESCRIPTOR and file DESCRIPTION. From SUSv3 ....

(Open) File Description

A record of how a process or group of processes is accessing a file. Each file descriptor refers to exactly one open file description, but an open file description can be referred to by more than one file descriptor. The file offset, file status, and file access modes are attributes of an open file description.

- Finnbarr
 

10 More Discussions You Might Find Interesting

1. Programming

File Descriptors

Hi, I have written a daemon process, to perform certain operations in the background. For this I have to close, the open file descriptors, Does anybody know how to find out the number of open file descriptors ? Thanks in Advance, Sheetal (2 Replies)
Discussion started by: s_chordia
2 Replies

2. UNIX for Advanced & Expert Users

File Descriptors

Hello all, A few questions on file descriptors ... scenario : Sun Ultra 30 with Sun OS 5.5.1 , E250 with Solaris 2.6 In one of my servers, the file descriptor status from the soft limit and hard limits are 64 and 1024 respectively for root user. Is the soft limit (64) represents the... (3 Replies)
Discussion started by: shibz
3 Replies

3. Shell Programming and Scripting

Multiple co-processor file descriptors

I have a script that creates a KSH co-process for Oracle sqlplus and I am presently interacting with it via print -p and read -p. I also need to interact with another Oracle database what isn't permitted to have any direct connection to the first. Presently, I simply disconnect from the first... (10 Replies)
Discussion started by: tmarikle
10 Replies

4. Programming

Sockets and File descriptors

I am in a Systems programming class this semester, and our current project is to write a program utilizing sockets and fork. For the project, I decided to make my own instant messaging program. I have the code completed, but I have a problem that keeps old clients from communicating with new... (3 Replies)
Discussion started by: gstlouis
3 Replies

5. UNIX for Advanced & Expert Users

File Descriptors + cron

Hi All, This thread is going to be a discussion basically bringing out more information from the experts on cron jobs and the associated file handles. So, here is the question. There is definitely a constant ' n ' as the maximum number of file handles alloted to a process ' p '. Will... (7 Replies)
Discussion started by: matrixmadhan
7 Replies

6. UNIX for Dummies Questions & Answers

how to list the files using File Descriptors

hello, I have written a script named listall.sh with the following codes init. #!/bin/bash PATH="/proj/cmon/$1" echo $PATH if ; then echo "Usage: $0 ***" exit 1 else ls -l $PATH/*.sc fi Here there are 3 subdirectories (namely - src, data and jobs)under /proj/cmon, so... (2 Replies)
Discussion started by: shyjuezy
2 Replies

7. UNIX for Dummies Questions & Answers

Write/read to file descriptors

Is it possible to write to file descriptor 0 and read from 1 or 2? How could this be implemented? (3 Replies)
Discussion started by: machshev
3 Replies

8. HP-UX

exec and file descriptors

Hi, I speak and write english more or less, so I hope my asking be clear. :) In the company I am working, they are using control-m software to lunch shell scripts. So i put this command in all shell scripts: export LOGFILE_tmp=$PRODUC_DATA/tmp/${SCRIPT}_${PAIS}_`date... (0 Replies)
Discussion started by: anamcara
0 Replies

9. UNIX for Dummies Questions & Answers

Semaphores and File Descriptors

What is the difference between a file descriptor and a semaphore? My basic understanding is: - a file descriptor is a small positive integer that the system uses instead of the file name to identify an open file or socket. - a semaphore is a variable with a value that indicates the... (1 Reply)
Discussion started by: Mr_Webster
1 Replies

10. Shell Programming and Scripting

Questions about file descriptors

Hi, I'm playing with KSH I entered following command in terminal { echo "stdout" >&1; echo "stderr" >&2; } > out And I get only stoud in a new file out. My question is: Where did my stderr vanish ? (5 Replies)
Discussion started by: solaris_user
5 Replies
select(2)							System Calls Manual							 select(2)

Name
       select - synchronous I/O multiplexing

Syntax
       #include <sys/types.h>
       #include <sys/time.h>

       int select (nfds, readfds, writefds, exceptfds, timeout)
       int nfsd;
       fd_set *readfds, *writefds, *exceptfds;
       struct timeval *timeout;

       FD_SET (fd, fdset)
       FD_CLR (fd, fdset)
       FD_ISSET (fd, fdset)
       FD_ZERO (fdset)
       int fd;
       fd_set *fdset;

Description
       The  system  call  examines  the I/O descriptor sets whose addresses are passed in readfds, writefds, and exceptfds to see if some of their
       descriptors are ready for reading, ready for writing, or have an exceptional condition pending. The nfds parameter is the number of bits to
       be  checked  in	each bit mask that represent a file descriptor; the descriptors from 0 through nfds-1 in the descriptor sets are examined.
       Typically nfds has the value returned by for the maximum number of file descriptors. On return, replaces the  given  descriptor	sets  with
       subsets	consisting  of those descriptors that are ready for the requested operation. The total number of ready descriptors in all the sets
       is returned.

       The descriptor sets are stored as bit fields in arrays of integers. The following macros are  provided  for  manipulating  such	descriptor
       sets:  FD_ZERO(fds  descriptor set fdset to the null set. FD_SET(fd, fdset) includes a particular descriptor fd in fdset. FD_CLR(fd, fdset)
       removes fd from fdset. FD_ISSET(fd, fdset) is nonzero if fd is a member of fdset, zero otherwise. The behavior of these macros is undefined
       if  a  descriptor  value is less than zero or greater than or equal to FD_SETSIZE, which is equal to the maximum number of descriptors that
       can be supported by the system.

       If timeout is not a NULL pointer, it specifies a maximum interval to wait for the selection to complete. If timeout is a NULL pointer,  the
       select  blocks  indefinitely. To effect a poll, the timeout argument should be a non-NULL pointer, pointing to a zero-valued timeval struc-
       ture.

       Any of readfds, writefds, and exceptfds may be given as NULL pointers if no descriptors are of interest.

       Selecting true for reading on a socket descriptor upon which a call has been performed indicates that a subsequent call on that	descriptor
       will not block.

Restrictions
       The  call  may  indicate  that  a  descriptor  is ready for writing when in fact an attempt to write would block. This can happen if system
       resources necessary for a write are exhausted or otherwise unavailable.	If an application deems it critical that writes to a file descrip-
       tor not block, it should set the descriptor for non-blocking I/O using the F_SETFL request to the call.

Return Values
       The  call  returns a non-negative value on success.  A positive value indicates the number of ready descriptors in the descriptor sets. A 0
       indicates that the time limit referred to by timeout expired.  On failure, returns -1, sets errno to indicate the error, and the descriptor
       sets are not changed.

Diagnostics
       [EBADF]	   One of the descriptor sets specified an invalid descriptor.

       [EFAULT]    One of the pointers given in the call referred to a non-existent portion of the process' address space.

       [EINTR]	   A signal was delivered before any of the selected events occurred, or before the time limit expired.

       [EINVAL]    A  component  of the pointed-to time limit is outside the acceptable range; t_sec must be between 0 and 10^8, inclusive. t_usec
		   must be greater than or equal to 0, and less than 10^6.

See Also
       accept(2), connect(2), fcntl(2), gettimeofday(2), listen(2), read(2), recv(2), send(2), write(2), getdtablesize(2)

																	 select(2)
All times are GMT -4. The time now is 10:32 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy