Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ulimit.h(3head) [opensolaris man page]

ulimit.h(3HEAD) 						      Headers							   ulimit.h(3HEAD)

NAME
ulimit.h, ulimit - ulimit commands SYNOPSIS
#include <ulimit.h> DESCRIPTION
The <ulimit.h> header defines the following symbolic constants used by the ulimit() function. UL_GETFSIZE Get maximum file size. UL_SETFSIZE Set maximum file size. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ SEE ALSO
ulimit(2), attributes(5), standards(5) SunOS 5.11 10 Sep 2004 ulimit.h(3HEAD)

Check Out this Related Man Page

ULIMIT(3)						     Linux Programmer's Manual							 ULIMIT(3)

NAME
ulimit - get and set user limits SYNOPSIS
#include <ulimit.h> long ulimit(int cmd, long newlimit); DESCRIPTION
Warning: This routine is obsolete. The include file is no longer provided by glibc. Use getrlimit(2), setrlimit(2) and sysconf(3) instead. For the shell command ulimit, see bash(1). The ulimit call will get or set some limit for the current process. The cmd argument can have one of the following values. UL_GETFSIZE Return the limit on the size of a file, in units of 512 bytes. UL_SETFSIZE Set the limit on the size of a file. 3 (Not implemented for Linux.) Return the maximum possible address of the data segment. 4 (Implemented but no symbolic constant provided.) Return the maximum number of files that the calling process can open. RETURN VALUE
On success, ulimit returns a nonnegative value. On error, -1 is returned, and errno is set appropriately. ERRORS
EPERM A non-root process tried to increase a limit. CONFORMING TO
SVID. SEE ALSO
bash(1), getrlimit(2), setrlimit(2), sysconf(3) Linux 2.0 1998-06-12 ULIMIT(3)
Man Page

4 More Discussions You Might Find Interesting

1. Programming

File descriptor constant

I have a requirement to close all the file descriptors from 3 to 1024 for a particular application. Right now, this is how I do it .. for ( int i = 3 ; i <= 1024; ++i ) close(i); The change I am looking at is, I want to do away with the number 1024 and replace it with a constant which... (4 Replies)
Discussion started by: vino
4 Replies

2. AIX

how to set the ulimit on AIX 5.2 version?

how to set the ulimit on AIX 5.2 version? (3 Replies)
Discussion started by: Shilpi
3 Replies

3. SCO

problem with ulimit

hi, i cant set ULIMIT for normal user (file size more than 2gb).but in root user it is working fine.in user it is giving error like "limit exceeded (priviledged user)". (2 Replies)
Discussion started by: prakrithi
2 Replies

4. UNIX for Advanced & Expert Users

Grep Command

Hi, I have encountered a problem with grep command. The max characters that grep can supported is 2048 as defined in LINE_MAX in hp-ux. I try setting $TK_GREP_LINE_MAX but this is not workable in HP-UX, anyone has experienced with setting the max characters supported by grep command. Well,... (5 Replies)
Discussion started by: dwgi32
5 Replies