Date: Wed, 29 Jan 2014 09:13:41 +0800 From: Huang Wen Hui <huanghwh@gmail.com> To: Kenneth Culver <kwculver@gmail.com> Cc: Sevan / Venture37 <venture37@gmail.com>, "freebsd-stable@freebsd.org" <freebsd-stable@freebsd.org>, "freebsd-java@freebsd.org" <freebsd-java@freebsd.org> Subject: Re: openjdk6 - FreeBSD 10.0-RELEASE - dies with "exited on signal 6" Message-ID: <CAB8uncZDWzkHwBNBG96cmPnky8roJ4W9%2BxyLUACvMLkXoorJ6g@mail.gmail.com> In-Reply-To: <CAMKv5kY0pWHg1_%2BSN%2BorCs7_VH%2BZ5U=xY1MTY08mppymsahpMQ@mail.gmail.com> References: <CABW2x9r0zgnb=XX%2BzeaPpGFrCVrf_a0rZz3_Rt%2BGX9zUieCkKg@mail.gmail.com> <CAMKv5kYcG8ZQLyRO6F5C-PaqtE1d4MZ80=1yeE-PWR72Qv_m1w@mail.gmail.com> <CA%2BU3Mf6g_3S=%2BE5tp37NYc2Xcwqnzc73zATU_EPOwc8hMynimA@mail.gmail.com> <CAMKv5kY0pWHg1_%2BSN%2BorCs7_VH%2BZ5U=xY1MTY08mppymsahpMQ@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
[-- Attachment #1 --] 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@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@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@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org > " > > > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" > [-- Attachment #2 --] --- 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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAB8uncZDWzkHwBNBG96cmPnky8roJ4W9%2BxyLUACvMLkXoorJ6g>
