Results 41 to 46 of 46
Thread: Garbage Collector tuning
- 02-26-2011, 11:43 PM #41
Member
- Join Date
- Jan 2011
- Location
- NewYork
- Posts
- 13
- Rep Power
- 0
- 02-27-2011, 07:36 AM #42
Moderator
- Join Date
- Apr 2009
- Posts
- 10,459
- Rep Power
- 16
That SIGSEGV (Oxb) is almost always a result of some JNI code.
- 03-02-2011, 11:17 PM #43
Member
- Join Date
- Jan 2011
- Location
- NewYork
- Posts
- 13
- Rep Power
- 0
I have some 3rd party apps(jar files) and since my code doesn't use JNI explicitly, one of the 3rd party tools should be using.
Is there any tool which tells me who is using libc in my application?
Something like what ldd does for a binary.
- 03-02-2011, 11:36 PM #44
Senior Member
- Join Date
- Jan 2009
- Posts
- 671
- Rep Power
- 5
You could locate the shared objects used by your 3rd party product and examine the symbols in it. But that doesn't really tell you much, because even if your 3rd party native code doesn't depend directly on libc, it can still cause a stacktrace with libc in it, since the JVM uses libc.
- 03-02-2011, 11:39 PM #45
Senior Member
- Join Date
- Jan 2009
- Posts
- 671
- Rep Power
- 5
It just occured to me that I've seen this type of problem also when you have multiple versions of java installed and the library path is set up wrong such that you're using a JVM from one version and load libraries from another java version. You might want to check for that possibility.
- 03-02-2011, 11:51 PM #46
Member
- Join Date
- Jan 2011
- Location
- NewYork
- Posts
- 13
- Rep Power
- 0
Similar Threads
-
In defense of the Garbage Collector
By Katanagas in forum Advanced JavaReplies: 2Last Post: 10-25-2010, 06:40 PM -
Garbage Collector Doubt
By CristOm in forum New To JavaReplies: 9Last Post: 05-04-2010, 11:26 AM -
Q about Garbage Collector
By m00nchile in forum New To JavaReplies: 4Last Post: 02-05-2010, 05:57 AM -
Garbage Collector and finalize()
By arefeh in forum New To JavaReplies: 5Last Post: 01-09-2010, 09:04 PM -
Garbage collector and its impacts
By RadhaJayalakshmi in forum Advanced JavaReplies: 1Last Post: 07-23-2008, 11:56 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks