aboutsummaryrefslogblamecommitdiff
path: root/example/test.cc
blob: c9691f3f431fde58482d282924cfa15fdd69213f (plain) (tree)
1
2
3
4
5
6
7
8
9

                                        

                       
                 



                                                           
 
                                      
                                                                  
                
                                                                 
     



                      

            
                                     
 




                                                     
 
                                      

             
/* Copyright (c) 2020 Johannes Stoelp */

#include "lib/matcha.h"

#include <cstdio>
#include <memory>

struct TestThread : public Thread {
    TestThread(const char* name) : Thread(), mName(name) {}

    virtual void threadFn() override {
        printf("[%s] starting up TestThread -> yield()\n", mName);
        yield();
        printf("[%s] yield() -> finishing TestThreads\n", mName);
    }

  private:
    const char* mName;
};

int main() {
    puts("[main] start main thread");

    Executor e;
    e.spawn(std::make_unique<TestThread>("Thread1"));
    e.spawn(std::make_unique<TestThread>("Thread2"));
    e.spawn(std::make_unique<TestThread>("Thread3"));
    e.run();

    puts("[main] finish main thread");
    return 0;
}