Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/preempt_longrun/enter3.c

    r7bdcac1 rb9da9585  
    33#include <thread>
    44#include <time>
    5 
    6 #include "long_tests.h"
    75
    86#ifndef PREEMPTION_RATE
     
    2018mon_t mon1, mon2, mon3;
    2119
    22 void foo( mon_t & mutex a, mon_t & mutex b, mon_t & mutex c ) {
    23         KICK_WATCHDOG;
    24 }
     20void foo( mon_t & mutex a, mon_t & mutex b, mon_t & mutex c ) {}
    2521
    2622thread worker_t {};
    2723
    2824void main( worker_t & this ) {
    29         for( unsigned long i = 0; TEST(i < N); i++ ) {
     25        for( unsigned long i = 0; i < N; i++ ) {
    3026                foo( mon1, mon2, mon3 );
    3127        }
Note: See TracChangeset for help on using the changeset viewer.