source: src/libcfa/concurrency/invoke.h @ b58a5772

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since b58a5772 was b58a5772, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Removed workarounds the void ptr error (now fixed).
Renamed a few functions for consistency

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[5c81105]1#include <stdbool.h>
2#include <stdint.h>
[78b3f52]3
[5c81105]4#ifdef __CFORALL__
5extern "C" {
6#endif
7
8#if ! defined(__CFA_INVOKE_PRIVATE__)
[78b3f52]9#ifndef _INVOKE_H_
10#define _INVOKE_H_
11
[80d9e49]12     struct coStack_t {
[5c81105]13            unsigned int size;          // size of stack
14            void *storage;                      // pointer to stack
15            void *limit;                        // stack grows towards stack limit
16            void *base;                         // base of stack
17            void *context;                      // address of cfa_context_t
18            void *top;                          // address of top of storage
19            bool userStack;     
20      };
[78b3f52]21
[80d9e49]22      enum coroutine_state { Start, Inactive, Active, Halt, Primed };
[78b3f52]23
[5c81105]24      struct coroutine {
25            struct coStack_t stack;
26            const char *name;                   // textual name for coroutine/task, initialized by uC++ generated code
27            int errno_;                         // copy of global UNIX variable errno
28            enum coroutine_state state; // current execution status for coroutine
29            bool notHalted;                     // indicate if execuation state is not halted
[78b3f52]30
[5c81105]31            struct coroutine *starter;  // first coroutine to resume this one
32            struct coroutine *last;             // last coroutine to resume this one
33      };
[78b3f52]34
[5c81105]35#endif //_INVOKE_H_
36#else //! defined(__CFA_INVOKE_PRIVATE__)
37#ifndef _INVOKE_PRIVATE_H_
38#define _INVOKE_PRIVATE_H_
39     
40     struct machine_context_t {
41            void *SP;
42            void *FP;
43            void *PC;
44      };
[78b3f52]45
[5c81105]46      // assembler routines that performs the context switch
[b58a5772]47      extern void CtxInvokeStub( void );
[5c81105]48      void CtxSwitch( void *from, void *to ) asm ("CtxSwitch");
[78b3f52]49
[5c81105]50#endif //_INVOKE_PRIVATE_H_
51#endif //! defined(__CFA_INVOKE_PRIVATE__)
52#ifdef __CFORALL__
53}
54#endif
Note: See TracBrowser for help on using the repository browser.