Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/concurrent/signal/block.c

    r7bdcac1 rb9da9585  
    1414#include <time>
    1515
    16 #include "long_tests.h"
    17 
    1816#ifndef PREEMPTION_RATE
    1917#define PREEMPTION_RATE 10`ms
     
    2422}
    2523
    26 #ifdef TEST_LONG
     24#ifdef LONG_TEST
    2725static const unsigned long N = 150_000ul;
    2826#else
     
    4240}
    4341
    44 void ^?{} ( global_data_t & mutex this ) {}
     42void ^?{} ( global_data_t & this ) {}
    4543
    4644global_data_t globalA, globalB;
     
    6866thread Waiter {};
    6967void main( Waiter & this ) {
    70         for( int i = 0; TEST(i < N); i++ ) {
     68        for( int i = 0; i < N; i++ ) {
    7169                wait_op( globalA, globalB, i );
    72                 KICK_WATCHDOG;
    7370        }
    7471}
Note: See TracChangeset for help on using the changeset viewer.