Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/test/synch/rcu1.c

    r897fd8f1 r7850dda  
    5151} exited_t;
    5252
    53 /* Co-opt EPARTY error code for race detection. */
    54 #define ERACE   EPARTY
     53/* Callback raced with preexisting readers. */
     54#define ERACE   123
     55/* Waited for too long for the callback to exit; consider it lost. */
     56#define ECBLOST 432
    5557
    5658/*-------------------------------------------------------------------*/
     
    6971       
    7072        if (!p->exited) {
    71                 *presult = ETIMEOUT;
     73                *presult = ECBLOST;
    7274        }
    7375}
     
    114116                        do {
    115117                                int ret = thread_join_timeout(thread[i], 5 * 1000 * 1000, 0);
    116                                 joined = (ret != ETIMEOUT);
     118                                joined = (ret != ESYNCH_TIMEOUT);
    117119                               
    118                                 if (ret == EOK) {
     120                                if (ret == ESYNCH_OK_BLOCKED) {
    119121                                        TPRINTF("%zu threads remain\n", thread_cnt - i - 1);
    120122                                }
Note: See TracChangeset for help on using the changeset viewer.