summaryrefslogtreecommitdiff
path: root/java/jmp/files
diff options
context:
space:
mode:
authorGreg Lewis <glewis@FreeBSD.org>2003-06-17 16:29:53 +0000
committerGreg Lewis <glewis@FreeBSD.org>2003-06-17 16:29:53 +0000
commitc2d516ed4b017a879acf3d3f3b90d574a018ad98 (patch)
tree22378e0fe1829381709c363f526b1aef20c08b5c /java/jmp/files
parentFix dependencies and Cleanup pkg-plist. (diff)
. Update to 0.30
PR: 52628 Submitted by: Ronald Klop <ronald@cs.vu.nl> (maintainer)
Notes
Notes: svn path=/head/; revision=83165
Diffstat (limited to 'java/jmp/files')
-rw-r--r--java/jmp/files/patch-configure12
-rw-r--r--java/jmp/files/patch-jmp.c45
2 files changed, 0 insertions, 57 deletions
diff --git a/java/jmp/files/patch-configure b/java/jmp/files/patch-configure
deleted file mode 100644
index 1e1a32c90f62..000000000000
--- a/java/jmp/files/patch-configure
+++ /dev/null
@@ -1,12 +0,0 @@
-$FreeBSD$
-
---- configure.orig Fri Feb 28 08:28:00 2003
-+++ configure Fri Feb 28 08:28:31 2003
-@@ -11241,6 +11241,7 @@
-
-
- case $target_os in
-+ freebsd*) java_os=freebsd;;
- linux*) java_os=linux;;
- solaris*) java_os=solaris;;
- cygwin*) java_os=win32;;
diff --git a/java/jmp/files/patch-jmp.c b/java/jmp/files/patch-jmp.c
deleted file mode 100644
index 888f0a5dfd48..000000000000
--- a/java/jmp/files/patch-jmp.c
+++ /dev/null
@@ -1,45 +0,0 @@
-$FreeBSD$
-
---- jmp.c Tue May 13 23:17:03 2003
-+++ jmp.c Tue May 13 23:17:47 2003
-@@ -1548,10 +1548,11 @@
- free (cf);
- }
-
--void enable_method_events () {
-+void enable_method_events_and_stacks (int get_stacks) {
- /* Ok, the thread stacks are bogous, clear them all and try to get
- * real stacks, timing will be a bit bogous, but not to much...
- */
-+ if (get_stacks) {
- jmphash_lock (threads);
- jmphash_lock (methods);
- jvmpi->DisableGC ();
-@@ -1559,6 +1560,7 @@
- jvmpi->EnableGC ();
- jmphash_unlock (methods);
- jmphash_unlock (threads);
-+ }
-
- method_profiling = 1;
- /*
-@@ -1572,6 +1574,10 @@
- jvmpi->EnableEvent (JVMPI_EVENT_METHOD_EXIT, NULL);
- }
-
-+void enable_method_events () {
-+ enable_method_events_and_stacks (1);
-+}
-+
- static void enable_dump_events () {
- dump_enabled = 1;
- jvmpi->EnableEvent (JVMPI_EVENT_DATA_DUMP_REQUEST, NULL);
-@@ -1603,7 +1609,7 @@
- enable_object_events ();
- enable_thread_events ();
- if (method_profiling)
-- enable_method_events ();
-+ enable_method_events_and_stacks (0);
- if (dump_enabled)
- enable_dump_events ();
- if (monitor_profiling)