Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/coroutine

    re5fccf4 r83a071f9  
     1//                              - *- Mode: CFA - *-
    12//
    23// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
     
    910// Author           : Thierry Delisle
    1011// Created On       : Mon Nov 28 12:27:26 2016
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Aug 30 07:58:29 2017
    13 // Update Count     : 3
     12// Last Modified By : Thierry Delisle
     13// Last Modified On : Mon Nov 28 12:27:26 2016
     14// Update Count     : 0
    1415//
    1516
    16 #pragma once
     17#ifndef COROUTINES_H
     18#define COROUTINES_H
    1719
    18 #include <assert.h>
     20#include "assert"
    1921#include "invoke.h"
    2022
     
    6163
    6264// Get current coroutine
    63 extern thread_local coroutine_desc * volatile this_coroutine;
     65extern volatile thread_local coroutine_desc * this_coroutine;
    6466
    6567// Private wrappers for context switch and stack creation
     
    127129}
    128130
     131#endif //COROUTINES_H
     132
    129133// Local Variables: //
    130134// mode: c //
Note: See TracChangeset for help on using the changeset viewer.