mirror of
https://git.freebsd.org/ports.git
synced 2025-06-11 07:40:40 -04:00
JMP is a profiler for java that can be used to trace objects usage and method timings. JMP uses the JVMPI interface to gather statistics and interact with the JVM. JMP uses a GTK+ interface to show the status. PR: 47151, 48474, 50325 Submitted by: Ronald Klop <ronald@cs.vu.nl>
15 lines
261 B
C
15 lines
261 B
C
$FreeBSD$
|
|
|
|
--- instance_owners.c Tue May 13 20:28:40 2003
|
|
+++ instance_owners.c Tue May 13 20:28:11 2003
|
|
@@ -11,6 +11,10 @@
|
|
#include <jmp-config.h>
|
|
#include <inttypes.h>
|
|
|
|
+#if __FreeBSD__ < 5
|
|
+#define PRId32 "d"
|
|
+#endif
|
|
+
|
|
enum {
|
|
INFO,
|
|
NUM_COLUMNS
|