Changeset 3dd8f42


Ignore:
Timestamp:
Jan 30, 2023, 1:26:21 PM (22 months ago)
Author:
caparsons <caparson@…>
Branches:
ADT, ast-experimental, master
Children:
c042d79
Parents:
378de69
Message:

added actor support to the compiler

Location:
src
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • src/Concurrency/module.mk

    r378de69 r3dd8f42  
    1616
    1717SRC += \
     18        Concurrency/Actors.cpp \
     19        Concurrency/Actors.hpp \
    1820        Concurrency/KeywordsNew.cpp \
    1921        Concurrency/Keywords.cc \
     
    2123        Concurrency/WaitforNew.cpp \
    2224        Concurrency/Waitfor.cc \
    23         Concurrency/Waitfor.h
     25        Concurrency/Waitfor.h 
  • src/main.cc

    r378de69 r3dd8f42  
    4646#include "Common/UnimplementedError.h"      // for UnimplementedError
    4747#include "Common/utility.h"                 // for deleteAll, filter, printAll
     48#include "Concurrency/Actors.hpp"           // for implementActors
    4849#include "Concurrency/Keywords.h"           // for implementMutex, implement...
    4950#include "Concurrency/Waitfor.h"            // for generateWaitfor
     
    341342                PASS( "Generate Autogen Routines", Validate::autogenerateRoutines( transUnit ) );
    342343
     344        PASS( "Implement Actors", Concurrency::implementActors( transUnit ) );
     345
    343346                PASS( "Implement Mutex", Concurrency::implementMutex( transUnit ) );
    344347                PASS( "Implement Thread Start", Concurrency::implementThreadStarter( transUnit ) );
Note: See TracChangeset for help on using the changeset viewer.