Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] How to investigate "Too many open files" error?

Hi James,

> You're not using CCRC are you?

if you're talking about ClearCase (guessed by asking Google), then no.
I'm using the Helios CDT distribution 
(eclipse-cpp-helios-linux-gtk.tar.gz)
without any additions (except non-java based code like gcc and gdb).

> You can look in /proc to see what the file descriptors are connected to:
> ls /proct/<pid>/fd

Yes, and this leads me to the same information as 'lsof | grep java'
which shows that the java process memory map file '/proc/<java-pid>/maps'
is held open many many times.

Wait a moment ... :-) That's it: Switching from the OpenJDK JRE 1.6 to
the Sun JRE 1.6 (both java 1.6) solves the problem. So it seems to be
a bug in the OpenJDK JRE.

Thanks for your answer, which finally led me in the right direction.

Regards,
Frank



Back to the top