I'm trying to detect where a mysterious System.gc() comes from, so I'm hoping to create a pointcut on all calls to System.gc()
the doc describes how to weave existing jars and existing dirs, but how do I weave the JDK itself ?
Thanks a lot
|
|
|
You can weave However, quick search reveals that there is only one place in the whole JDK (Sun 1.6.0_26) that calls
Maybe you can simply attach a debugger and put a breakpoint on That being said you can use |
||||
|