From 12aeff91fea57b5b9eeab2469dfd8dd3611244fb Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 11 Jun 1996 16:03:15 +0000 Subject: Interruptible by signals state was added to the STATES_BLOCKED set. It can not be part of the locally blocked set since it by itself does not indicate that the thread is blocked. --- cpukit/score/include/rtems/score/states.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cpukit/score/include') diff --git a/cpukit/score/include/rtems/score/states.h b/cpukit/score/include/rtems/score/states.h index 28ce3fd5ad..7cea46a368 100644 --- a/cpukit/score/include/rtems/score/states.h +++ b/cpukit/score/include/rtems/score/states.h @@ -57,7 +57,7 @@ typedef unsigned32 States_Control; STATES_WAITING_FOR_SEMAPHORE | \ STATES_WAITING_FOR_MUTEX | \ STATES_WAITING_FOR_CONDITION_VARIABLE | \ - STATES_WAITING_FOR_JOIN_AT_EXIT ) + STATES_WAITING_FOR_JOIN_AT_EXIT ) #define STATES_WAITING_ON_THREAD_QUEUE \ ( STATES_LOCALLY_BLOCKED | \ @@ -67,7 +67,8 @@ typedef unsigned32 States_Control; STATES_WAITING_FOR_TIME | \ STATES_WAITING_FOR_PERIOD | \ STATES_WAITING_FOR_EVENT | \ - STATES_WAITING_ON_THREAD_QUEUE ) + STATES_WAITING_ON_THREAD_QUEUE | \ + STATES_INTERRUPTIBLE_BY_SIGNAL ) #ifndef __RTEMS_APPLICATION__ #include -- cgit v1.2.3