Ignore:
Timestamp:
Jul 19, 2017, 12:28:59 PM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
3175147
Parents:
b826e6b
Message:

Fix error with volatile on pointer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/kernel.c

    rb826e6b r9cc0472  
    5555// Global state
    5656
    57 volatile thread_local coroutine_desc * this_coroutine;
    58 volatile thread_local thread_desc * this_thread;
    59 volatile thread_local processor * this_processor;
     57thread_local coroutine_desc * volatile this_coroutine;
     58thread_local thread_desc *    volatile this_thread;
     59thread_local processor *      volatile this_processor;
    6060
    6161volatile thread_local bool preemption_in_progress = 0;
Note: See TracChangeset for help on using the changeset viewer.