- VB
Select your favorite languages :
- Or search :
- Clojure
- C++
- C++
- C#
- C#
- D
- Dart
- Fortran
- Fortran
- Go
- Haskell
- JS
- Java
- Java
- Java
- PHP
- Pascal
- Perl
- Python
- Python
- Ruby
- Rust
std::atomic<int> x{};
auto local_x = x.load();
while(!x.compare_exchange_strong(local_x, f(local_x))) {
local_x = x.load();
}
I'm a bit unclear on whether the example is asking for an atomic value or something projected with a lock; I've shown an atomic.
class Example<T> {
T x;
Object lock = new Object();
T read() {
synchronized (lock) {
return x;
}
}
void write(T x) {
synchronized (lock) {
this.x = x;
}
}
}
"Synchronized" access.
$mutex = Mutex::create();
Mutex::lock($mutex);
$x = f($x);
Mutex::unlock($mutex);
Mutex::destroy($mutex);
Warning
The Mutex class has been removed in pthreads v3.
The Mutex class has been removed in pthreads v3.
my $x :shared;
$x = 0;
sub my_task {
my $id = shift;
for (1 .. 5) {
sleep 2*rand();
{ # lock scope
lock($x);
print "thread $id found $x\n";
$x = $id;
sleep 2*rand();
}
}
}
threads->create('my_task', $_) for 1 .. 3;
sleep 5 while threads->list(threads::running);
lock is lexically scoped. Delay outside the lock scope allows other threads a chance at changing $x.