Closed
Bug 919564
Opened 11 years ago
Closed 11 years ago
shell/js-gdb.gdb catch handler has symbol error for __GI___sigaction
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
mozilla27
People
(Reporter: luke, Assigned: luke)
Details
Attachments
(1 file)
(deleted),
patch
|
bbouvier
:
review+
|
Details | Diff | Splinter Review |
I don't know if this is a per-gcc/gdb version problem, but I get an error when the current signal handler is executed:
No symbol "__GI___sigaction" in current context.
However, the symbol __sigaction works fine. Does this symbol work for you also?
Comment 1•11 years ago
|
||
(In reply to Luke Wagner [:luke] from comment #0)
> I don't know if this is a per-gcc/gdb version problem, but I get an error
> when the current signal handler is executed:
> No symbol "__GI___sigaction" in current context.
> However, the symbol __sigaction works fine. Does this symbol work for you
> also?
I remember that the problem was you can't just use "sigaction" as it aliases the struct sigaction and gdb didn't know how to handle the difference.
I had sometimes errors that the symbol wasn't found, but not every time (maybe only when compiling with clang++). Using __sigaction works fine for me.
Assignee | ||
Comment 2•11 years ago
|
||
Great, then let's try this. This patch also fixes some sort of merge error introduced by http://hg.mozilla.org/mozilla-central/rev/2d2709188afa#l16.1
Updated•11 years ago
|
Attachment #808802 -
Flags: review?(bbouvier) → review+
Assignee | ||
Comment 3•11 years ago
|
||
Assignee | ||
Comment 4•11 years ago
|
||
Comment 5•11 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla27
You need to log in
before you can comment on or make changes to this bug.
Description
•