getdtablesize(3C) Standard C Library Functions getdtablesize(3C)NAME
getdtablesize - get the file descriptor table size
SYNOPSIS
#include <unistd.h>
int getdtablesize(void);
DESCRIPTION
The getdtablesize() function is equivalent to getrlimit(2) with the RLIMIT_NOFILE option.
RETURN VALUES
The getdtablesize() function returns the current soft limit as if obtained from a call to getrlimit() with the RLIMIT_NOFILE option.
ERRORS
No errors are defined.
USAGE
There is no direct relationship between the value returned by getdtablesize() and OPEN_MAX defined in <limits.h>.
Each process has a file descriptor table which is guaranteed to have at least 20 slots. The entries in the descriptor table are numbered
with small integers starting at 0. The getdtablesize() function returns the current maximum size of this table by calling the getrlimit()
function.
SEE ALSO close(2), getrlimit(2), open(2), setrlimit(2), select(3C)SunOS 5.10 1 Mar 1996 getdtablesize(3C)
i am executiing some commands using system an popen command in c.
while executing the code .
some data is shown on terimal without using any print statement.
how can i solve this problem
thank u
sree (1 Reply)
Hi,
want to port an executable from AIX 5.3 to AIX 5.2.
This seems to be no problem, when i build one executable.
But in another case i have to link one library statically and
the rest is loaded at runtime. This works for AIX 5.3 but
on AIX 5.2 i get the following error
... (2 Replies)
which signal will flush the file buffer in C/C++?
eg. send a signal to flush all the file buffer to a file/stdout with out invoking fflush().
-INT, -TERM?
someone please help me, thanks in advance!
waiting online... (8 Replies)
Im using gdb and when a user disconnects from my server I receive a message
Program received signal SIGABRT, Aborted.
0x7ffe0304 in ?? ()
I was hoping someone here might have a explination for this message in gdb (26 Replies)
Someone, please help on this issue:-
Note : for security reason i didn't mention hostnames and ips.
==============================================================================
# ntpstat
unsynchronised
polling server every 1024 s
Ntpstat showing unsynchronised.
... (29 Replies)