2009-07-06 Joel Sherrill <joel.sherrill@OARcorp.com>

* psxsignal01/init.c: Tune code to really hit POSIX signal from ISR
	code.
This commit is contained in:
Joel Sherrill
2009-07-06 21:03:05 +00:00
parent 3ba0750fd1
commit 147c5d512f
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2009-07-06 Joel Sherrill <joel.sherrill@OARcorp.com>
* psxsignal01/init.c: Tune code to really hit POSIX signal from ISR
code.
2009-07-06 Joel Sherrill <joel.sherrill@OARcorp.com> 2009-07-06 Joel Sherrill <joel.sherrill@OARcorp.com>
* psx07/init.c: Slight test fix to ensure state of sched_param * psx07/init.c: Slight test fix to ensure state of sched_param

View File

@@ -72,8 +72,8 @@ rtems_timer_service_routine Signal_duringISR_TSR(
void *ignored_address void *ignored_address
) )
{ {
int status; int status;
status = kill( getpid(), SIGUSR1 ); status = pthread_kill( pthread_self(), SIGUSR1 );
} }