source: src/libcfa/concurrency/thread@ ed9c0a8

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since ed9c0a8 was 91c389a, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

change usages of assert to assert.h

  • Property mode set to 100644
File size: 2.3 KB
Line 
1// -*- Mode: CFA -*-
2//
3// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
4//
5// The contents of this file are covered under the licence agreement in the
6// file "LICENCE" distributed with Cforall.
7//
8// thread --
9//
10// Author : Thierry Delisle
11// Created On : Tue Jan 17 12:27:26 2017
12// Last Modified By : Peter A. Buhr
13// Last Modified On : Thu Jul 20 15:22:24 2017
14// Update Count : 1
15//
16
17#ifndef THREADS_H
18#define THREADS_H
19
20#include <assert.h>
21#include "invoke.h"
22
23#include "coroutine"
24#include "monitor"
25
26//-----------------------------------------------------------------------------
27// Coroutine trait
28// Anything that implements this trait can be resumed.
29// Anything that is resumed is a coroutine.
30trait is_thread(dtype T) {
31 void ^?{}(T* mutex this);
32 void main(T* this);
33 thread_desc* get_thread(T* this);
34};
35
36#define DECL_THREAD(X) thread_desc* get_thread(X* this) { return &this->__thrd; } void main(X* this)
37
38forall( dtype T | is_thread(T) )
39static inline coroutine_desc* get_coroutine(T* this) {
40 return &get_thread(this)->cor;
41}
42
43forall( dtype T | is_thread(T) )
44static inline monitor_desc* get_monitor(T * this) {
45 return &get_thread(this)->mon;
46}
47
48static inline coroutine_desc* get_coroutine(thread_desc * this) {
49 return &this->cor;
50}
51
52static inline monitor_desc* get_monitor(thread_desc * this) {
53 return &this->mon;
54}
55
56extern volatile thread_local thread_desc * this_thread;
57
58forall( dtype T | is_thread(T) )
59void __thrd_start( T* this );
60
61//-----------------------------------------------------------------------------
62// Ctors and dtors
63void ?{}(thread_desc* this);
64void ^?{}(thread_desc* this);
65
66//-----------------------------------------------------------------------------
67// thread runner
68// Structure that actually start and stop threads
69forall( dtype T | sized(T) | is_thread(T) )
70struct scoped {
71 T handle;
72};
73
74forall( dtype T | sized(T) | is_thread(T) | { void ?{}(T*); } )
75void ?{}( scoped(T)* this );
76
77forall( dtype T, ttype P | sized(T) | is_thread(T) | { void ?{}(T*, P); } )
78void ?{}( scoped(T)* this, P params );
79
80forall( dtype T | sized(T) | is_thread(T) )
81void ^?{}( scoped(T)* this );
82
83void yield();
84void yield( unsigned times );
85
86#endif //THREADS_H
87
88// Local Variables: //
89// mode: c //
90// tab-width: 4 //
91// End: //
Note: See TracBrowser for help on using the repository browser.