The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
18 views

set a process open file max to maximum (in linux)

Is there anyway to set the (hard limit) open-file-max (setrlimit, RLIMIT_NOFILE) to the maximum? suppose that the pid of the process is zero (root). I just want to increase the RLIMIT_NOFILE to the ...
4
votes
1answer
75 views

Is it reasonable to expect that in Linux, fd < maximum number of open file descriptors?

I'm writing a server that needs to handle many open sockets, so I use setrlimit() to set the maximum number of open file descriptors (as root, before dropping privileges) like so: #include ...
0
votes
0answers
17 views

Apparmor : set rlimit nproc <= 1

Can anyone tell me how to limit process nubmers under a profile using apparmor? I tried set rlimit nproc <= 1, bu it doesn't work. Thank you!
3
votes
1answer
76 views

Python on MacOS totally ignoring rlimit

My Python process on MacOS is totally ignoring the rlimits below which I set. (I confirmed by print that they have been set) Physical memory usage goes above 2.4Gb, at which point CPU usage falls ...
1
vote
1answer
231 views

Closing opened file descriptors in child process

Is there a way to iterate through already open file descriptors (opened by parent process) and close them one by one in child process? OS: Unix. Reason for closure: RLIMIT_NOFILE limit of the ...
0
votes
0answers
119 views

Limiting memory usage for a single process in OSX /Darwin

I am trying to modify some JNI code to limit the amount of memory that a process can consume. Here is the code that I am using to test setRlimit on linux and osx. In linux it works as expected and the ...
0
votes
1answer
82 views

Increasing stack space with setrlimit() on a multi-threaded application with split stacks

I'm thinking of developing my own work-stealing scheduler, and one of the issues that needs to be solved is the possibility of stack overflows. These occur only on infrequent cases where one worker ...
2
votes
1answer
174 views

Changing file descriptor limit in C (OSX)

I want to increase the maximum number of file descriptors available to my C program, which is running on OSX 10.7. I've added the following code to my project, but it fails! struct rlimit limit; ...
2
votes
2answers
219 views

setrlimit isn't reliable?

I'm trying to use setrlimit() to cap the amount of time a process takes. However it doesn't seem to work when I do certain operations like printf(). Here is a test program illustrating the problem: ...
2
votes
1answer
394 views

Resource limits on Windows?

What are the Windows equivalents to the resource limit mechanisms exposed on Unix systems by Python's resource module, and POSIX setrlimit? Specifically, I'm limiting processor time for a child ...
1
vote
1answer
440 views

limit number of forks/child procs

I am hosting a computing service on Ubuntu 12.04 and I need a method to prevent users from forkbombing. I am currently using setrlimit(RLIMIT_NPROC) in Linux. However, this actually sets a global ...
0
votes
1answer
99 views

Why is RLIMIT_NOFILE rlim_max of -1 on BSD?

In the following code: 139 struct rlimit limit; 140 141 method = "rlimit"; 142 if (getrlimit(RLIMIT_NOFILE, &limit) < 0) { 143 perror("calling getrlimit"); 144 ...
3
votes
3answers
915 views

How does OS honor user limits configured in /etc/security/limits.conf since setrlimit is process based?

I noted that in /etc/security/limits.conf, the limits are configured on a per user basis (or per group basis), for example: @faculty hard nproc 50 I assume that it is setrlimit ...
5
votes
4answers
687 views

Find current number of open filehandle ( NOT lsof )

On *NIX systems, is there a way to find out how many open filehandles are there in the current running process? I am looking for an API or a formula for use in C, from within the running process in ...
2
votes
2answers
273 views

Can setrlimit be used to enforce resource usage limits over periods of time?

I want to set limits for how long programs spawned by execv can use a certain amount of memory and a certain amount of CPU time. For example, I want to set limits like a program cannot exceed 100MB ...
0
votes
2answers
100 views

What would be the best way to set limits on unknown code?

I'm using a Python library (SimpleParse) that I seem to be causing some runaway recursion with it. It's already crashed my computer once when I was just trying to debug it. What would be the best ...
0
votes
1answer
2k views

java.lang.OutOfMemoryError: requested 16 bytes for CHeapObj-new. Out of swap space?

I got this error on trying to get the Java search process UP(start a java process). I am setting the address space using the RLIMIT_AS. Please help me to get past this error. I have doubts about the ...
0
votes
1answer
622 views

RLIMIT_AS is not working upon setting its soft limit to a certain value

For a process, I have set a soft limit value of 335544320 and hard limit value of 1610612736 for the resource RLIMIT_AS. Even after setting this value, the address space of the process goes up to ...
5
votes
2answers
1k views

Set stack size with setrlimit() and provoke a stack overflow/segfault

In the given example below I try to set the stacksize to 1kb. Why is it now possible to allocate an array of ints on the stack with size 8kb in foo() ? #include <stdio.h> #include ...
9
votes
2answers
551 views

How can I limit memory acquired with `malloc()` without also limiting stack?

I'm trying to keep student code from running wild with allocations and dragging my test machine to a halt. I've tried setrlimit(RLIMIT_DATA, r); where r is a struct holding the limits. But ...