Commit 1ca35881 by Arnaud Charlet

Complete previous change.

From-SVN: r145921
parent 2c880bdf
......@@ -1822,8 +1822,7 @@ __gnat_map_signal (int sig)
exception = &storage_error;
msg = "SIGBUS: possible stack overflow";
break;
#else
#if (_WRS_VXWORKS_MAJOR = 6)
#elif (_WRS_VXWORKS_MAJOR == 6)
case SIGILL:
exception = &constraint_error;
msg = "SIGILL";
......@@ -1835,6 +1834,10 @@ __gnat_map_signal (int sig)
exception = &storage_error;
msg = "SIGSEGV: possible stack overflow";
break;
case SIGBUS:
exception = &program_error;
msg = "SIGBUS";
break;
#else
/* VxWorks 6 kernel mode with probing. SIGBUS for guard page hit */
case SIGSEGV:
......@@ -1857,7 +1860,6 @@ __gnat_map_signal (int sig)
exception = &program_error;
msg = "SIGSEGV";
break;
#endif
case SIGBUS:
exception = &program_error;
msg = "SIGBUS";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment