source: src/libcfa/concurrency/threads@ 63f78f0

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 63f78f0 was bd98b58, checked in by Thierry Delisle <tdelisle@…>, 9 years ago

Kernel now uses intrusive lists and blocking locks for ready queue management.
Update the plan for concurrency.

  • Property mode set to 100644
File size: 1.9 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// threads --
9//
10// Author : Thierry Delisle
11// Created On : Tue Jan 17 12:27:26 2016
12// Last Modified By : Thierry Delisle
13// Last Modified On : --
14// Update Count : 0
15//
16
17#ifndef THREADS_H
18#define THREADS_H
19
20#include "assert"
21#include "invoke.h"
22
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.
29trait is_thread(dtype T /*| sized(T)*/) {
30 void main(T* this);
31 thread_h* get_thread(T* this);
32 /*void ?{}(T*);
33 void ^?{}(T*);*/
34};
35
36#define DECL_THREAD(X) static inline thread_h* get_thread(X* this) { return &this->t; } void main(X* this);
37
38forall(otype T | is_thread(T) )
39static inline coroutine* get_coroutine(T* this) {
40 return &get_thread(this)->c;
41}
42
43static inline coroutine* get_coroutine(thread_h* this) {
44 return &this->c;
45}
46
47thread_h * this_thread(void);
48
49//-----------------------------------------------------------------------------
50// Ctors and dtors
51void ?{}(thread_h* this);
52void ^?{}(thread_h* this);
53
54//-----------------------------------------------------------------------------
55// thread runner
56// Structure that actually start and stop threads
57forall(otype T | is_thread(T) )
58struct thread {
59 T handle;
60};
61
62forall(otype T | is_thread(T) )
63void ?{}( thread(T)* this );
64
65forall(otype T, ttype P | is_thread(T) | { void ?{}(T*, P); } )
66void ?{}( thread(T)* this, P params );
67
68forall(otype T | is_thread(T) )
69void ^?{}( thread(T)* this );
70
71void yield();
72
73#endif //THREADS_H
74
75// Local Variables: //
76// mode: c //
77// tab-width: 4 //
78// End: //
Note: See TracBrowser for help on using the repository browser.