Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
4k views

Limit memory usage for a single Linux process

I'm running pdftoppm to convert a user-provided PDF into a 300DPI image. This works great, except if the user provides an PDF with a very large page size. pdftoppm will allocate enough memory to ...
9
votes
2answers
311 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 ...
5
votes
4answers
174 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 ...
3
votes
2answers
530 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 ...
2
votes
2answers
186 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
0answers
46 views

How does setrlimit interact with linux memory overcommit

So you can use setrlimit to adjust RLIMIT_DATA heap size (amongst other different data types, I know) but how does that interact with linux overcommit? Will a malloc over the RLIMIT_DATA size ...
0
votes
0answers
139 views

Rails: `setrlimit': Operation not permitted - setrlimit (Errno::EPERM)

After running rake, I get the following error: `setrlimit': Operation not permitted - setrlimit (Errno::EPERM) I'm using Ubuntu 11.10, and Rails is run through rvm rvm was installed with a normal ...
0
votes
2answers
73 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
732 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
183 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 ...