Ignore:
File:
1 edited

Legend:

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

    r7bdcac1 r85b1deb  
    33#include <thread>
    44#include <time>
    5 
    6 #include "long_tests.h"
    75
    86#ifndef PREEMPTION_RATE
     
    1715
    1816monitor mon_t {};
    19 void foo( mon_t & mutex this ) {
    20         KICK_WATCHDOG;
    21 }
     17void foo( mon_t & mutex this ) {}
    2218
    2319mon_t mon;
    2420thread worker_t {};
    2521void main( worker_t & this ) {
    26         for( unsigned long i = 0; TEST(i < N); i++ ) {
     22        for( unsigned long i = 0; i < N; i++ ) {
    2723                foo( mon );
    2824        }
Note: See TracChangeset for help on using the changeset viewer.