Results 1 to 2 of 2
when I write g++ p1.cpp -o output
the terminal shows the message that
g++: vfork: Resource temporarily unavailable
what is this??
please tell me how can i run my file??
...
- 04-29-2009 #1Just Joined!
- Join Date
- Mar 2009
- Posts
- 8
terminal giving error
when I write g++ p1.cpp -o output
the terminal shows the message that
g++: vfork: Resource temporarily unavailable
what is this??
please tell me how can i run my file??
help me
tommorow is my project
and my terminal..
- 04-29-2009 #2Just Joined!
- Join Date
- Apr 2009
- Posts
- 90
The error is due to your user account having used up all of its allowed processes. basically g++ is trying to create (fork) a new process, and the kernel is saying No.
Maybe kill off some of the processes you are running, or have a friendly word with your System Administrator to increase the limit.


Reply With Quote