<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hi Lokesh,<br>
<br>
The Hotspot JVM uses certain signals for it's own use and SIGSEGV is
one such signal. The code below is generating the signal to act as a
pseudo memory barrier. SIGSEGV can also generated by JIT generated code
as a null check. To continue debugging use the gdb command:<br>
<br>
> handle SIGSEGV nostop noprint<br>
<br>
I think the other signals the JVM can legitimately generate are SIGBUS
and SIGFPE.<br>
<br>
Hope this helps.<br>
<br>
JohnC<br>
<br>
On 11/03/11 08:56, Lokesh Gidra wrote:
<blockquote
 cite="mid:1320335799.3485.YahooMailNeo@web137412.mail.in.yahoo.com"
 type="cite">
  <div
 style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); font-family: times new roman,new york,times,serif; font-size: 12pt;">
  <div>Hi,</div>
  <div><br>
  </div>
  <div>I am trying to debug openjdk7 using gdb, and everytime it fails
with the following trace:</div>
  <div><br>
  </div>
  <div>Program received signal SIGSEGV, Segmentation fault.<br>
[Switching to Thread 0x7fffe1df7700 (LWP 14211)]<br>
0x00007ffff634bf60 in os::write_memory_serialize_page
(thread=0x7fffe81d9800)<br>
    at
/home/lokesh/code/phd_openjdk7/hotspot/src/share/vm/runtime/os.hpp:319<br>
319        *(volatile int32_t
*)((uintptr_t)_mem_serialize_page+page_offset) = 1;<br>
(gdb) <br>
  </div>
  <div><br>
  </div>
  <div>Running the same build without gdb works fine. Also, there are
no changes made by me. The code is freshly downloaded from the website.
Can someone please point out what could be going wrong.</div>
  <div><br>
  </div>
  <div><br>
  </div>
  <div>Thanks in advance,</div>
  <div><br>
  </div>
  <div>Best Regards,</div>
  <div>Lokesh</div>
  </div>
</blockquote>
<br>
</body>
</html>