openjdk6 - FreeBSD 10.0-RELEASE - dies with "exited on signal 6"
Huang Wen Hui
huanghwh at gmail.com
Wed Jan 29 01:13:44 UTC 2014
Hi,
I got the same problem on FreeBSD 10, disable Background Compilation seems
to fixed this problem.
Please try this patch:
--- work/hotspot/src/cpu/x86/vm/c1_globals_x86.hpp.orig 2014-01-28
09:01:59.000000000 +0800
+++ work/hotspot/src/cpu/x86/vm/c1_globals_x86.hpp 2014-01-28
09:02:49.000000000 +0800
@@ -32,7 +32,7 @@
// (see c1_globals.hpp)
#ifndef TIERED
-define_pd_global(bool, BackgroundCompilation, true );
+define_pd_global(bool, BackgroundCompilation, false);
define_pd_global(bool, UseTLAB, true );
define_pd_global(bool, ResizeTLAB, true );
define_pd_global(bool, InlineIntrinsics, true );
--- work/hotspot/src/cpu/x86/vm/c2_globals_x86.hpp.orig 2014-01-28
09:02:06.000000000 +0800
+++ work/hotspot/src/cpu/x86/vm/c2_globals_x86.hpp 2014-01-28
09:04:34.000000000 +0800
@@ -31,7 +31,7 @@
// Sets the default values for platform dependent flags used by the server
compiler.
// (see c2_globals.hpp). Alpha-sorted.
-define_pd_global(bool, BackgroundCompilation, true);
+define_pd_global(bool, BackgroundCompilation, false);
define_pd_global(bool, UseTLAB, true);
define_pd_global(bool, ResizeTLAB, true);
define_pd_global(bool, CICompileOSR, true);
Cheers,
Huang Wen Hui
2014-01-29 Kenneth Culver <kwculver at gmail.com>
> I built from ports, I'm running 10.0-STABLE, but the problems were
> occurring on 10.0-RELEASE as well.
>
>
> On Tue, Jan 28, 2014 at 9:31 AM, Sevan / Venture37 <venture37 at gmail.com
> >wrote:
>
> > Jason,
> > A couple of questions,
> > Are you using packages or building from ports?
> > If you're building, what does your /etc/make.conf
> >
> > I've been suffering from sigsegv issues for a few weeks now on my
> > server running -current which I build world/ports on myself.
> > I looked to see if the problems are there in 10.0-RELEASE &
> > 11.0-CURRENT using the official packages & install CD & the problem
> > did not manifest on either environments.
> > I'm currently working backwards on my aforementioned server, reverting
> > changes to find where the problem is introduced.
> >
> >
> > Sevan
> > _______________________________________________
> > freebsd-stable at freebsd.org mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-stable
> > To unsubscribe, send any mail to "freebsd-stable-unsubscribe at freebsd.org
> "
> >
> _______________________________________________
> freebsd-java at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-java
> To unsubscribe, send any mail to "freebsd-java-unsubscribe at freebsd.org"
>
-------------- next part --------------
--- work/hotspot/src/cpu/x86/vm/c1_globals_x86.hpp.orig 2014-01-28 09:01:59.000000000 +0800
+++ work/hotspot/src/cpu/x86/vm/c1_globals_x86.hpp 2014-01-28 09:02:49.000000000 +0800
@@ -32,7 +32,7 @@
// (see c1_globals.hpp)
#ifndef TIERED
-define_pd_global(bool, BackgroundCompilation, true );
+define_pd_global(bool, BackgroundCompilation, false);
define_pd_global(bool, UseTLAB, true );
define_pd_global(bool, ResizeTLAB, true );
define_pd_global(bool, InlineIntrinsics, true );
--- work/hotspot/src/cpu/x86/vm/c2_globals_x86.hpp.orig 2014-01-28 09:02:06.000000000 +0800
+++ work/hotspot/src/cpu/x86/vm/c2_globals_x86.hpp 2014-01-28 09:04:34.000000000 +0800
@@ -31,7 +31,7 @@
// Sets the default values for platform dependent flags used by the server compiler.
// (see c2_globals.hpp). Alpha-sorted.
-define_pd_global(bool, BackgroundCompilation, true);
+define_pd_global(bool, BackgroundCompilation, false);
define_pd_global(bool, UseTLAB, true);
define_pd_global(bool, ResizeTLAB, true);
define_pd_global(bool, CICompileOSR, true);
More information about the freebsd-java
mailing list