Lines Matching refs:this
9 The options near the beginning of this list are quite simple. The idea
13 Please note that this is a generic guide, and that specific subsystems
34 shared variables. A simple way to achieve this is to define a global lock
38 this lock at a given time, your code will be executed single-threaded.
62 takes this approach for much of its grace-period processing and also
91 we can also achieve this by instead associating the lock with specific
98 The poster boy for this approach is the hash table, where placing a lock
115 scalability. Of course, there is no free lunch: The dark side of this
119 view of this processing and data, in which case something like locking
120 must be used to protect this global view. This is the approach taken
137 Although this APIs can be used in extremely complex ways, there are simple
233 too easy to assume ordering, and this assumption must be avoided when
241 loads from and stores to shared variables. Although this is both
253 introductory references and some tooling to start you on this noble quest: