2009-06-18 Chris Johns <chrisj@rtems.org>

* psx04/task3.c: Declare unions volatile to workaround the H8300
        gcc bug.
This commit is contained in:
Chris Johns
2009-06-17 22:58:19 +00:00
parent c0075af37a
commit f9eb21d863
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2009-06-18 Chris Johns <chrisj@rtems.org>
* psx04/task3.c: Declare unions volatile to workaround the H8300
gcc bug.
2009-06-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac: Add mq_send to full queue from ISR case.

View File

@@ -27,7 +27,7 @@ void *Task_3(
unsigned int remaining;
int status;
int sig;
union sigval value;
volatile union sigval value; /* should be removed once the H8300 target is fixed */
sigset_t mask;
siginfo_t info;