[78b3f52] | 1 | // -*- Mode: CFA -*-
|
---|
[0e76cf4f] | 2 | //
|
---|
[78b3f52] | 3 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
|
---|
[0e76cf4f] | 4 | //
|
---|
| 5 | // The contents of this file are covered under the licence agreement in the
|
---|
| 6 | // file "LICENCE" distributed with Cforall.
|
---|
| 7 | //
|
---|
[78b3f52] | 8 | // threads --
|
---|
[0e76cf4f] | 9 | //
|
---|
[78b3f52] | 10 | // Author : Thierry Delisle
|
---|
[6a3d2e7] | 11 | // Created On : Tue Jan 17 12:27:26 2016
|
---|
[78b3f52] | 12 | // Last Modified By : Thierry Delisle
|
---|
[6a3d2e7] | 13 | // Last Modified On : --
|
---|
[78b3f52] | 14 | // Update Count : 0
|
---|
[0e76cf4f] | 15 | //
|
---|
| 16 |
|
---|
[17e5e2b] | 17 | #ifndef THREADS_H
|
---|
| 18 | #define THREADS_H
|
---|
[0e76cf4f] | 19 |
|
---|
[8118303] | 20 | #include "assert"
|
---|
| 21 | #include "invoke.h"
|
---|
[78b3f52] | 22 |
|
---|
[8118303] | 23 | #include "coroutines"
|
---|
| 24 |
|
---|
| 25 | //-----------------------------------------------------------------------------
|
---|
| 26 | // Coroutine trait
|
---|
| 27 | // Anything that implements this trait can be resumed.
|
---|
| 28 | // Anything that is resumed is a coroutine.
|
---|
[8def349] | 29 | trait is_thread(dtype T | sized(T)) {
|
---|
[7fbe450] | 30 | void main(T* this);
|
---|
[8118303] | 31 | thread_h* get_thread(T* this);
|
---|
| 32 | };
|
---|
| 33 |
|
---|
[8f49a54] | 34 | #define DECL_THREAD(X) static inline thread_h* get_thread(X* this) { return &this->t; } void main(X* this);
|
---|
| 35 |
|
---|
[8def349] | 36 | forall( dtype T | sized(T) | is_thread(T) )
|
---|
[8118303] | 37 | static inline coroutine* get_coroutine(T* this) {
|
---|
| 38 | return &get_thread(this)->c;
|
---|
| 39 | }
|
---|
| 40 |
|
---|
[c84e80a] | 41 | static inline coroutine* get_coroutine(thread_h* this) {
|
---|
| 42 | return &this->c;
|
---|
| 43 | }
|
---|
| 44 |
|
---|
[bd98b58] | 45 | thread_h * this_thread(void);
|
---|
| 46 |
|
---|
[8118303] | 47 | //-----------------------------------------------------------------------------
|
---|
| 48 | // Ctors and dtors
|
---|
| 49 | void ?{}(thread_h* this);
|
---|
| 50 | void ^?{}(thread_h* this);
|
---|
| 51 |
|
---|
| 52 | //-----------------------------------------------------------------------------
|
---|
| 53 | // thread runner
|
---|
| 54 | // Structure that actually start and stop threads
|
---|
[8def349] | 55 | forall( dtype T | sized(T) | is_thread(T) )
|
---|
[8118303] | 56 | struct thread {
|
---|
| 57 | T handle;
|
---|
| 58 | };
|
---|
| 59 |
|
---|
[8def349] | 60 | forall( dtype T | sized(T) | is_thread(T) | { void ?{}(T*); } )
|
---|
[8118303] | 61 | void ?{}( thread(T)* this );
|
---|
| 62 |
|
---|
[8def349] | 63 | forall( dtype T, ttype P | sized(T) | is_thread(T) | { void ?{}(T*, P); } )
|
---|
[8118303] | 64 | void ?{}( thread(T)* this, P params );
|
---|
| 65 |
|
---|
[8def349] | 66 | forall( dtype T | sized(T) | is_thread(T) | { void ^?{}(T*); } )
|
---|
[8118303] | 67 | void ^?{}( thread(T)* this );
|
---|
| 68 |
|
---|
[bd98b58] | 69 | void yield();
|
---|
[596f987b] | 70 |
|
---|
[17e5e2b] | 71 | #endif //THREADS_H
|
---|
| 72 |
|
---|
[78b3f52] | 73 | // Local Variables: //
|
---|
| 74 | // mode: c //
|
---|
| 75 | // tab-width: 4 //
|
---|
| 76 | // End: //
|
---|