source: libcfa/src/concurrency/thread.hfa@ 2b3ebe5

stuck-waitfor-destruct
Last change on this file since 2b3ebe5 was a30fceb, checked in by Matthew Au-Yeung <mw2auyeu@…>, 4 days ago

Add a generated hash to fix stuck waitfor comparing static inline mutex destructors

  • Property mode set to 100644
File size: 6.4 KB
RevLine 
[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
[3ef5905]12// Last Modified On : Sun Sep 3 07:34:43 2023
13// Update Count : 47
[0e76cf4f]14//
15
[6b0b624]16#pragma once
[0e76cf4f]17
[91c389a]18#include <assert.h>
[8118303]19#include "invoke.h"
[78b3f52]20
[58b6d1b]21#include "coroutine.hfa"
22#include "kernel.hfa"
23#include "monitor.hfa"
[ab8c6a6]24#include "exception.hfa"
[d2ad151]25#include "bits/random.hfa"
[8118303]26
27//-----------------------------------------------------------------------------
[de6319f]28// thread trait
[8a97248]29forall( T & )
[5d3d281]30trait is_basic_thread {
[ab8c6a6]31 void main(T& this);
[e84ab3d]32 thread$ * get_thread(T& this);
[8118303]33};
[5d3d281]34forall( T & | is_basic_thread(T) )
35trait is_thread {
36 void ^?{}(T& mutex this);
37};
[8118303]38
[c715e5f]39forall(thread_t &)
40exception ThreadCancelled {
[ab8c6a6]41 thread_t * the_thread;
42 exception_t * the_exception;
[c715e5f]43};
[ab8c6a6]44
[fd54fef]45forall(T &)
[ab8c6a6]46void copy(ThreadCancelled(T) * dst, ThreadCancelled(T) * src);
47
[fd54fef]48forall(T &)
[ab8c6a6]49const char * msg(ThreadCancelled(T) *);
50
[8c50aed]51// Inline getters for threads/coroutines/monitors
[5d3d281]52forall( T & | is_basic_thread(T) )
[e84ab3d]53static inline coroutine$ * get_coroutine(T & this) __attribute__((const)) { return &get_thread(this)->self_cor; }
[8118303]54
[5d3d281]55forall( T & | is_basic_thread(T) )
[e84ab3d]56static inline monitor$ * get_monitor (T & this) __attribute__((const)) { return &get_thread(this)->self_mon; }
[cb0e6de]57
[e84ab3d]58static inline coroutine$ * get_coroutine(thread$ * this) __attribute__((const)) { return &this->self_cor; }
59static inline monitor$ * get_monitor (thread$ * this) __attribute__((const)) { return &this->self_mon; }
[cb0e6de]60
[8c50aed]61//-----------------------------------------------------------------------------
62// forward declarations needed for threads
[de6319f]63extern struct cluster * mainCluster;
[bd98b58]64
[5d3d281]65forall( T & | is_basic_thread(T) )
[09f357ec]66void __thrd_start( T & this, void (*)(T &) );
[bd4d011]67
[8118303]68//-----------------------------------------------------------------------------
69// Ctors and dtors
[e84ab3d]70void ?{}(thread$ & this, const char * const name, struct cluster & cl, void * storage, size_t storageSize );
71void ^?{}(thread$ & this);
72
[eaf269d]73static inline void ?{}(thread$ & this) { this{ "Anonymous Thread", *mainCluster, 0p, DEFAULT_STACK_SIZE }; }
[e84ab3d]74static inline void ?{}(thread$ & this, size_t stackSize ) { this{ "Anonymous Thread", *mainCluster, 0p, stackSize }; }
75static inline void ?{}(thread$ & this, void * storage, size_t storageSize ) { this{ "Anonymous Thread", *mainCluster, storage, storageSize }; }
[eaf269d]76static inline void ?{}(thread$ & this, struct cluster & cl ) { this{ "Anonymous Thread", cl, 0p, DEFAULT_STACK_SIZE }; }
[e84ab3d]77static inline void ?{}(thread$ & this, struct cluster & cl, size_t stackSize ) { this{ "Anonymous Thread", cl, 0p, stackSize }; }
78static inline void ?{}(thread$ & this, struct cluster & cl, void * storage, size_t storageSize ) { this{ "Anonymous Thread", cl, storage, storageSize }; }
[eaf269d]79static inline void ?{}(thread$ & this, const char * const name) { this{ name, *mainCluster, 0p, DEFAULT_STACK_SIZE }; }
80static inline void ?{}(thread$ & this, const char * const name, struct cluster & cl ) { this{ name, cl, 0p, DEFAULT_STACK_SIZE }; }
[e84ab3d]81static inline void ?{}(thread$ & this, const char * const name, struct cluster & cl, size_t stackSize ) { this{ name, cl, 0p, stackSize }; }
[8118303]82
[ab8c6a6]83struct thread_dtor_guard_t {
84 monitor_dtor_guard_t mg;
[a30fceb]85 func_id_t func_id;
[ab8c6a6]86};
87
[c3b9d639]88forall( T & | is_thread(T) | IS_EXCEPTION(ThreadCancelled(T))
89 | { EHM_DEFAULT_VTABLE(ThreadCancelled(T)); })
[a30fceb]90void ?{}( thread_dtor_guard_t & this, T & thrd, func_id_t func_id, void(*)(ThreadCancelled(T) &) );
[ab8c6a6]91void ^?{}( thread_dtor_guard_t & this );
92
[8118303]93//-----------------------------------------------------------------------------
94// thread runner
95// Structure that actually start and stop threads
[fd54fef]96forall( T & | sized(T) | is_thread(T) )
[e15df4c]97struct scoped {
[8118303]98 T handle;
99};
100
[fd54fef]101forall( T & | sized(T) | is_thread(T) | { void ?{}(T&); } )
[242a902]102void ?{}( scoped(T)& this );
[8118303]103
[fd54fef]104forall( T &, P... | sized(T) | is_thread(T) | { void ?{}(T&, P); } )
[242a902]105void ?{}( scoped(T)& this, P params );
[8118303]106
[fd54fef]107forall( T & | sized(T) | is_thread(T) )
[242a902]108void ^?{}( scoped(T)& this );
[8118303]109
[3381ed7]110//-----------------------------------------------------------------------------
111// Scheduler API
112
113//----------
114// Park thread: block until corresponding call to unpark, won't block if unpark is already called
[e235429]115void park( void );
[3381ed7]116
117//----------
118// Unpark a thread, if the thread is already blocked, schedule it
[b0c7419]119// if the thread is not yet block, signal that it should rerun immediately
[e84ab3d]120void unpark( thread$ * this );
[3381ed7]121
[fd54fef]122forall( T & | is_thread(T) )
[e235429]123static inline void unpark( T & this ) { if(!&this) return; unpark( get_thread( this ) );}
[3381ed7]124
125//----------
126// Yield: force thread to block and be rescheduled
[b0c7419]127bool force_yield( enum __Preemption_Reason );
128
[2d8f7b0]129//----------
130// sleep: force thread to block and be rescheduled after Duration duration
131void sleep( Duration duration );
132
[77a2994]133//----------
134// join
[c3b9d639]135forall( T & | is_thread(T) | IS_RESUMPTION_EXCEPTION(ThreadCancelled(T))
136 | { EHM_DEFAULT_VTABLE(ThreadCancelled(T)); })
[77a2994]137T & join( T & this );
138
[a167c70c]139//----------
140// misc
141bool migrate( thread$ * thrd, struct cluster & cl );
142
143forall( T & | is_thread(T) )
144static inline bool migrate( T & mutex thrd, struct cluster & cl ) { return migrate( &(thread&)thrd, cl ); }
145
146
[12b5e94a]147//----------
[c655650]148// prng
[20cf96d]149void set_seed( size_t seed );
[3ef5905]150size_t get_seed( void ) __attribute__(( warn_unused_result ));
[12b5e94a]151static inline {
[20cf96d]152 size_t prng( thread$ & th ) __attribute__(( warn_unused_result )) { return PRNG_NAME( th.random_state ); } // [0,UINT_MAX]
153 size_t prng( thread$ & th, size_t u ) __attribute__(( warn_unused_result )) { return prng( th ) % u; } // [0,u)
154 size_t prng( thread$ & th, size_t l, size_t u ) __attribute__(( warn_unused_result )) { return prng( th, u - l + 1 ) + l; } // [l,u]
[c655650]155 forall( T & | is_thread(T) ) {
[20cf96d]156 size_t prng( T & th ) __attribute__(( warn_unused_result )) { return prng( (thread &)th ); } // [0,UINT_MAX]
157 size_t prng( T & th, size_t u ) __attribute__(( warn_unused_result )) { return prng( th ) % u; } // [0,u)
158 size_t prng( T & th, size_t l, size_t u ) __attribute__(( warn_unused_result )) { return prng( th, u - l + 1 ) + l; } // [l,u]
[c655650]159 } // distribution
160} // distribution
[12b5e94a]161
[78b3f52]162// Local Variables: //
163// mode: c //
164// tab-width: 4 //
165// End: //
Note: See TracBrowser for help on using the repository browser.