• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

java/H29-Jun-2008-5,7774,761

src/H03-May-2022-4,9823,832

AUTHORSH A D14-Apr-2007103 32

COPYINGH A D03-May-200834.3 KiB675553

ChangeLogH A D29-Jun-20081.7 KiB3528

INSTALLH A D03-May-20089.3 KiB238179

Makefile.amH A D08-Jul-20071.6 KiB5234

Makefile.inH A D03-May-202222.8 KiB739640

NEWSH A D14-Apr-200752 32

READMEH A D30-Apr-20071.2 KiB3830

TODOH A D29-Jan-2008413 1310

aclocal.m4H A D29-Jun-2008264 KiB7,5216,763

config.guessH A D03-May-200843.8 KiB1,5271,315

config.h.inH A D29-Jun-20081.4 KiB5637

config.subH A D03-May-200832.6 KiB1,6591,514

configureH A D29-Jun-2008688.7 KiB21,68017,275

configure.acH A D29-Jun-20081.2 KiB5750

depcompH A D03-May-200817.4 KiB590375

install-shH A D03-May-200813.3 KiB520344

ltmain.shH A D19-May-2008195.3 KiB6,9655,506

missingH A D03-May-200810.9 KiB368275

README

1TIJMP is a memory profiler for java. It uses the jvm tool interface to
2do its profiling.
3
4TIJMP uses jvmti, jni and java to do its profiling. The jvmti gui run
5inside the same jvm as the program being profiled.
6
7
8Installing:
9set JAVA_HOME so that tijmp can find the header files.
10export JAVA_HOME=
11./configure --prefix=/tmp/tijmp/ && make install
12
13Running:
14Set LD_LIBRARY_PATH so that tijmp can be found and then run java with
15the flags to start tijmp:
16export LD_LIBRARY_PATH=/tmp/tijmp/lib
17java -agentlib:tijmp my.fine.Program
18
19TIJmp tries to find tijmp.jar automatically, but depending on how you
20have installed tijmp it may fail, in that case you can set the system
21property tijmp.jar:
22java -Dtijmp.jar=/tmp/tijmp/tijmp.jar -agentlib:tijmp my.fine.Program
23
24Reporting bugs:
25Send an email to jmp-devel@khelekore.org. Please supply as detailed
26information as possible. The basic information should at least
27contain:
28- Operating system
29- The result of an 'java -version' or similar
30- Version of jmp
31- special startup flags to jmp
32- What you were trying to do
33- What happened
34It is very helpful if you can compile jmp with tracing enabled and
35supply the information it gives (or at least the last text generated
36by tracing).
37
38