Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/coroutine

    r83a071f9 re5fccf4  
    1 //                              - *- Mode: CFA - *-
    21//
    32// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
     
    109// Author           : Thierry Delisle
    1110// Created On       : Mon Nov 28 12:27:26 2016
    12 // Last Modified By : Thierry Delisle
    13 // Last Modified On : Mon Nov 28 12:27:26 2016
    14 // Update Count     : 0
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Wed Aug 30 07:58:29 2017
     13// Update Count     : 3
    1514//
    1615
    17 #ifndef COROUTINES_H
    18 #define COROUTINES_H
     16#pragma once
    1917
    20 #include "assert"
     18#include <assert.h>
    2119#include "invoke.h"
    2220
     
    6361
    6462// Get current coroutine
    65 extern volatile thread_local coroutine_desc * this_coroutine;
     63extern thread_local coroutine_desc * volatile this_coroutine;
    6664
    6765// Private wrappers for context switch and stack creation
     
    129127}
    130128
    131 #endif //COROUTINES_H
    132 
    133129// Local Variables: //
    134130// mode: c //
Note: See TracChangeset for help on using the changeset viewer.