Sponsored Content
Full Discussion: ulimit
Operating Systems Solaris ulimit Post 302597742 by Zhenya_ on Sunday 12th of February 2012 01:34:22 AM
Old 02-12-2012
ulimit

Hello, could you help me please?
I write in command line: "ulimit 500"
-> i've set the max size of 512-bytes blocks that i can write in one file.
But when after it i use ulimit.3c in my program: "ulimit(UL_GETFSIZE);"
the result turns out 1000. Why is it so? They always differ so that one is half as much as another and corresponding to man they must be equal i think.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

ulimit -d

All I am trying to do ulimit -d unlimited and I get "sh: ulimit: The specified value exceeds the user's allowable limit." Can someone please help me understand, how to change this! Thanks (1 Reply)
Discussion started by: adadevil
1 Replies

2. UNIX for Dummies Questions & Answers

ulimit

Hi, system aix 4.3 when I execute umilit i get result "unlimited". why cant i ftp or extract from media filesize over 2gig.... e.g FS /test/testy is large file enabled. any help will be greatly appreciated. thnx (3 Replies)
Discussion started by: Student37
3 Replies

3. Solaris

ulimit

Hi, I need to increase the open files on my server to run a test. Usually what I do is: ulimit -n 5000 My questions are: 1] I want to set this parameter once and for all. What is the right parameter to set in /etc/system: rlim_fd_max or rlim_fd_cur? 2] How to make sure that this... (1 Reply)
Discussion started by: melanie_pfefer
1 Replies

4. UNIX for Advanced & Expert Users

ulimit

hi what is the difference between file and data? if file is unlimited, does that mean we can have a file as big as we like? thanks. file(blocks) unlimited data(kbytes) 1048576 (6 Replies)
Discussion started by: JamesByars
6 Replies

5. UNIX for Advanced & Expert Users

ulimit nofiles

Hi, We have an AIX system on oslevel 5.2 and we have the current limits set for the user "XXX" time(seconds) unlimited file(blocks) unlimited data(kbytes) 1024000 stack(kbytes) 32768 memory(kbytes) unlimited coredump(blocks) 2097151... (4 Replies)
Discussion started by: jerardfjay
4 Replies

6. 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

7. HP-UX

ulimit -c unlimited

Hi, I want to set the coredump to unlimited, but it seems it does not work. > ulimit -a time(seconds) unlimited file(blocks) unlimited data(kbytes) 1048576 stack(kbytes) 131072 memory(kbytes) unlimited coredump(blocks) 4194303... (1 Reply)
Discussion started by: mr_andrew
1 Replies

8. Solaris

ulimit

how do i check the ulimit set on my server.. ca i know whats the command ?? thanks in advance .. (5 Replies)
Discussion started by: expert
5 Replies

9. AIX

nofiles in ulimit

Hi all, What are the nofiles in ulimit for? How can these affect the server performance? What are the desired values for this? below is the result of ulimit -a on the server. time(seconds) unlimited file(blocks) unlimited data(kbytes) unlimited stack(kbytes) ... (1 Reply)
Discussion started by: guzzelle
1 Replies

10. Linux

ulimit -n

Hi im a complete noob to shell commands but here is my problem i have a dedicated server i7 with 24 gig ram i have whm/cpanel on it now ive added a minecraft system to root but i cannot set the server to more than 512mb memory i was told its because the memory is being blocked and was told to... (7 Replies)
Discussion started by: gazzac
7 Replies
ulimit(3)						     Library Functions Manual							 ulimit(3)

NAME
ulimit - Sets and gets process limits LIBRARY
Standard C Library (libc.so, libc.a) SYNOPSIS
#include <ulimit.h> long int ulimit ( int command, ... ); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: ulimit(): XSH4.2 Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Specifies the form of control. The command parameter can have the following values: Returns the soft file size limit of the process. The limit is reported in 512-byte blocks (see the sys/param.h file) and is inherited by child processes. The function can read files of any size. The return value is the integer part of the soft file size limit divided by 512. If the result cannot be represented as a long int, the result is unspecified. Sets the hard and soft process file size limit for output operations to the value of the second parame- ter, taken as a long int value, and returns the new file size limit. Any process can decrease its own hard limit, but only a process with superuser privileges can increase the limit. The hard and soft file size limits are set to the specified value multiplied by 512. If the result would overflow an rlim_t, the actual value set is unspecified. [Tru64 UNIX] Returns the maximum possible break value as described in the brk(2) reference page. DESCRIPTION
The ulimit() function controls process limits. During access to remote files, the process limits of the local node are used. NOTES
The ulimit() function is implemented with calls to setrlimit(). The two interfaces should not be used in the same program. The result of doing so is undefined. RETURN VALUES
Upon successful completion, ulimit() returns the value of the requested limit and does not change the setting of errno. Otherwise, a value of -1 is returned, and errno is set to indicate the error. ERRORS
If the ulimit() function fails, the limit remains unchanged and errno is set to one of the following values: The command parameter is invalid. A process without appropriate system privileges attempted to increase its file size limit. As all return values are permissable in a successful situation, an application wishing to check for error situations should set errno to 0, then call ulimit(), and, if it returns -1, check to see if errno is nonzero. RELATED INFORMATION
Commands: ulimit(1) Functions: brk(2), getrlimit(2), write(2) Routines: pathconf(2) Standards: standards(5) delim off ulimit(3)
All times are GMT -4. The time now is 08:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy