Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/concurrent/coroutineYield.c

    r7bdcac1 ref952d7  
    55#include <time>
    66
     7#define __kick_rate 150000ul
    78#include "long_tests.h"
    89
     
    2526void main(Coroutine& this) {
    2627        while(true) {
    27                 sout | "Coroutine 1" | endl;
     28                #if !defined(TEST_FOREVER)
     29                        sout | "Coroutine 1" | endl;
     30                #endif
    2831                yield();
    29                 sout | "Coroutine 2" | endl;
     32                #if !defined(TEST_FOREVER)
     33                        sout | "Coroutine 2" | endl;
     34                #endif
    3035                suspend();
    3136        }
     
    3641        Coroutine c;
    3742        for(int i = 0; TEST(i < N); i++) {
    38                 sout | "Thread 1" | endl;
     43                #if !defined(TEST_FOREVER)
     44                        sout | "Thread 1" | endl;
     45                #endif
    3946                resume(c);
    40                 sout | "Thread 2" | endl;
     47                #if !defined(TEST_FOREVER)
     48                        sout | "Thread 2" | endl;
     49                #endif
    4150                yield();
    4251                KICK_WATCHDOG;
Note: See TracChangeset for help on using the changeset viewer.