Changeset d14418b in rtems


Ignore:
Timestamp:
10/06/97 21:28:18 (26 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
7e4938c
Parents:
7d5566e
Message:

Added _Thread_Enable_dispatch to already_timedout path on Wait_support.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/posix/src/cond.c

    r7d5566e rd14418b  
    423423          return status;
    424424
     425      } else {
     426        _Thread_Enable_dispatch();
     427        status = ETIMEDOUT;
    425428      }
    426       else
    427         status = ETIMEDOUT;
    428429
    429430      /*
  • cpukit/posix/src/cond.c

    r7d5566e rd14418b  
    423423          return status;
    424424
     425      } else {
     426        _Thread_Enable_dispatch();
     427        status = ETIMEDOUT;
    425428      }
    426       else
    427         status = ETIMEDOUT;
    428429
    429430      /*
Note: See TracChangeset for help on using the changeset viewer.