[0e76cf4f] | 1 | // |
---|
[78b3f52] | 2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo |
---|
[0e76cf4f] | 3 | // |
---|
| 4 | // The contents of this file are covered under the licence agreement in the |
---|
| 5 | // file "LICENCE" distributed with Cforall. |
---|
| 6 | // |
---|
[75a17f1] | 7 | // thread -- |
---|
[0e76cf4f] | 8 | // |
---|
[78b3f52] | 9 | // Author : Thierry Delisle |
---|
[f07e037] | 10 | // Created On : Tue Jan 17 12:27:26 2017 |
---|
[91c389a] | 11 | // Last Modified By : Peter A. Buhr |
---|
[6b0b624] | 12 | // Last Modified On : Sat Jul 22 09:59:40 2017 |
---|
| 13 | // Update Count : 3 |
---|
[0e76cf4f] | 14 | // |
---|
| 15 | |
---|
[6b0b624] | 16 | #pragma once |
---|
[0e76cf4f] | 17 | |
---|
[91c389a] | 18 | #include <assert.h> |
---|
[8118303] | 19 | #include "invoke.h" |
---|
[78b3f52] | 20 | |
---|
[75a17f1] | 21 | #include "coroutine" |
---|
[cb0e6de] | 22 | #include "monitor" |
---|
[8118303] | 23 | |
---|
| 24 | //----------------------------------------------------------------------------- |
---|
| 25 | // Coroutine trait |
---|
| 26 | // Anything that implements this trait can be resumed. |
---|
| 27 | // Anything that is resumed is a coroutine. |
---|
[0c92c9f] | 28 | trait is_thread(dtype T) { |
---|
[cb0e6de] | 29 | void ^?{}(T* mutex this); |
---|
[7fbe450] | 30 | void main(T* this); |
---|
[348006f] | 31 | thread_desc* get_thread(T* this); |
---|
[8118303] | 32 | }; |
---|
| 33 | |
---|
[17af7d1] | 34 | #define DECL_THREAD(X) thread_desc* get_thread(X* this) { return &this->__thrd; } void main(X* this) |
---|
[8f49a54] | 35 | |
---|
[0c92c9f] | 36 | forall( dtype T | is_thread(T) ) |
---|
[c3acb841] | 37 | static inline coroutine_desc* get_coroutine(T* this) { |
---|
[17af7d1] | 38 | return &get_thread(this)->cor; |
---|
[8118303] | 39 | } |
---|
| 40 | |
---|
[cb0e6de] | 41 | forall( dtype T | is_thread(T) ) |
---|
| 42 | static inline monitor_desc* get_monitor(T * this) { |
---|
| 43 | return &get_thread(this)->mon; |
---|
| 44 | } |
---|
| 45 | |
---|
| 46 | static inline coroutine_desc* get_coroutine(thread_desc * this) { |
---|
[17af7d1] | 47 | return &this->cor; |
---|
[c84e80a] | 48 | } |
---|
| 49 | |
---|
[cb0e6de] | 50 | static inline monitor_desc* get_monitor(thread_desc * this) { |
---|
| 51 | return &this->mon; |
---|
| 52 | } |
---|
| 53 | |
---|
[9cc0472] | 54 | extern thread_local thread_desc * volatile this_thread; |
---|
[bd98b58] | 55 | |
---|
[bd4d011] | 56 | forall( dtype T | is_thread(T) ) |
---|
| 57 | void __thrd_start( T* this ); |
---|
| 58 | |
---|
[8118303] | 59 | //----------------------------------------------------------------------------- |
---|
| 60 | // Ctors and dtors |
---|
[348006f] | 61 | void ?{}(thread_desc* this); |
---|
| 62 | void ^?{}(thread_desc* this); |
---|
[8118303] | 63 | |
---|
| 64 | //----------------------------------------------------------------------------- |
---|
| 65 | // thread runner |
---|
| 66 | // Structure that actually start and stop threads |
---|
[8def349] | 67 | forall( dtype T | sized(T) | is_thread(T) ) |
---|
[e15df4c] | 68 | struct scoped { |
---|
[8118303] | 69 | T handle; |
---|
| 70 | }; |
---|
| 71 | |
---|
[8def349] | 72 | forall( dtype T | sized(T) | is_thread(T) | { void ?{}(T*); } ) |
---|
[e15df4c] | 73 | void ?{}( scoped(T)* this ); |
---|
[8118303] | 74 | |
---|
[8def349] | 75 | forall( dtype T, ttype P | sized(T) | is_thread(T) | { void ?{}(T*, P); } ) |
---|
[e15df4c] | 76 | void ?{}( scoped(T)* this, P params ); |
---|
[8118303] | 77 | |
---|
[9f1695b] | 78 | forall( dtype T | sized(T) | is_thread(T) ) |
---|
[e15df4c] | 79 | void ^?{}( scoped(T)* this ); |
---|
[8118303] | 80 | |
---|
[bd98b58] | 81 | void yield(); |
---|
[44264c5] | 82 | void yield( unsigned times ); |
---|
[596f987b] | 83 | |
---|
[78b3f52] | 84 | // Local Variables: // |
---|
| 85 | // mode: c // |
---|
| 86 | // tab-width: 4 // |
---|
| 87 | // End: // |
---|