Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
1ca35881
Commit
1ca35881
authored
Apr 10, 2009
by
Arnaud Charlet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Complete previous change.
From-SVN: r145921
parent
2c880bdf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
gcc/ada/init.c
+5
-3
No files found.
gcc/ada/init.c
View file @
1ca35881
...
@@ -1822,8 +1822,7 @@ __gnat_map_signal (int sig)
...
@@ -1822,8 +1822,7 @@ __gnat_map_signal (int sig)
exception
=
&
storage_error
;
exception
=
&
storage_error
;
msg
=
"SIGBUS: possible stack overflow"
;
msg
=
"SIGBUS: possible stack overflow"
;
break
;
break
;
#else
#elif (_WRS_VXWORKS_MAJOR == 6)
#if (_WRS_VXWORKS_MAJOR = 6)
case
SIGILL
:
case
SIGILL
:
exception
=
&
constraint_error
;
exception
=
&
constraint_error
;
msg
=
"SIGILL"
;
msg
=
"SIGILL"
;
...
@@ -1835,6 +1834,10 @@ __gnat_map_signal (int sig)
...
@@ -1835,6 +1834,10 @@ __gnat_map_signal (int sig)
exception
=
&
storage_error
;
exception
=
&
storage_error
;
msg
=
"SIGSEGV: possible stack overflow"
;
msg
=
"SIGSEGV: possible stack overflow"
;
break
;
break
;
case
SIGBUS
:
exception
=
&
program_error
;
msg
=
"SIGBUS"
;
break
;
#else
#else
/* VxWorks 6 kernel mode with probing. SIGBUS for guard page hit */
/* VxWorks 6 kernel mode with probing. SIGBUS for guard page hit */
case
SIGSEGV
:
case
SIGSEGV
:
...
@@ -1857,7 +1860,6 @@ __gnat_map_signal (int sig)
...
@@ -1857,7 +1860,6 @@ __gnat_map_signal (int sig)
exception
=
&
program_error
;
exception
=
&
program_error
;
msg
=
"SIGSEGV"
;
msg
=
"SIGSEGV"
;
break
;
break
;
#endif
case
SIGBUS
:
case
SIGBUS
:
exception
=
&
program_error
;
exception
=
&
program_error
;
msg
=
"SIGBUS"
;
msg
=
"SIGBUS"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment