srfi.230
- Atomic operations ¶This srfi defines a set of data types and operations that perform certain dereference and modification operations atomically. The interface is similar to C++’s atomic operation library.
The srfi also defines sevaral relaxed memory order constraints. In the current Gauche operations, those operation involves VM-level procedure calls and all operations are done with sequentially consistent order, no matter what memory-order argument is. Other Scheme implementations that inline-compiles these operations may emit more efficient code with relaxed memory orders.
Gauche’s implementation does utilize lock-free atomic operations, so they may still faster than using mutexes (see Mutex).
[SRFI-230]{srfi.230
}
If symbol must be one of the following symbols specifying
memory order: relaxed
, aquire
, release
,
aquire-release
, or sequentially-consistent
,
it is returned as is. Otherwise, a syntax error is thrown.
This can be used instaed of quote
to statically check
the validity of the symbol.
In Gauche’s current implementation, all atomic operations are
done in sequentially-consistent
, no matter what memory order
you specify. Portable code may use more relaxed order and expect
it runs more efficiently on other implementations.
[SRFI-230]{srfi.230
}
Returns #t
if obj is one of the valid symbols as
memory order, #f
otherwise.
An atomic flag is a storage that holds a boolean value.
The initial value is #f
.
Referencing the flag can only be done with
atomic-flag-test-and-set!
, which turns the value to #t
.
[SRFI-230]{srfi.230
}
Returns a newly created atomic flag. Its value is #f
.
[SRFI-230]{srfi.230
}
Returns #t
if obj
is an atomic flag,
#f
otherwise.
[SRFI-230]{srfi.230
}
Set flag’s value to #t
and returns its previous value,
atomically.
Gauche uses sequentially consistent order regardless of the memory-order argument.
[SRFI-230]{srfi.230
}
Reset flag’s value to #f
.
Gauche uses sequentially consistent order regardless of the memory-order argument.
An atomic box is a storage that holds a Scheme value.
[SRFI-230]{srfi.230
}
Creates a new atomic box whose value is val.
[SRFI-230]{srfi.230
}
Returns #t
if obj
is an atomic box,
#f
otherwise.
[SRFI-230]{srfi.230
}
Returns the content of atomic box abox.
Gauche uses sequentially consistent order regardless of the memory-order argument.
[SRFI-230]{srfi.230
}
Sets val as the content of atomic box abox,
and returns an undefined value.
Gauche uses sequentially consistent order regardless of the memory-order argument.
[SRFI-230]{srfi.230
}
Sets val as the content of atomic box abox,
and returns the previous content, atomically.
Gauche uses sequentially consistent order regardless of the memory-order argument.
(define b (make-atomic-box 'foo)) (atomic-box-swap! box 'bar) ⇒ foo (atomic-box-ref box) ⇒ bar
[SRFI-230]{srfi.230
}
Compares the content of atomic box abox and expected.
If both are the same (in eq?
sense), sets desired as the
new value of abox. Returns the previous content. All operations
are done atomically.
You can know the content is altered if (eq? return-value expected)
is true.
Gauche uses sequentially consistent order regardless of the memory-order argument.
An atomic fxbox is a storage that can hold a fixnum. It provides atomic fetcy-compute-store opertaions as well.
[SRFI-230]{srfi.230
}
Creates a new atomic box whose value is fxval.
[SRFI-230]{srfi.230
}
Returns #t
if obj
is an atomic fxbox,
#f
otherwise.
[SRFI-230]{srfi.230
}
Returns the content of atomic fxbox fxbox.
Gauche uses sequentially consistent order regardless of the memory-order argument.
[SRFI-230]{srfi.230
}
Sets fxval as the content of atomic fxbox fxbox,
and returns an undefined value.
Gauche uses sequentially consistent order regardless of the memory-order argument.
[SRFI-230]{srfi.230
}
Sets fxval as the content of atomic fxbox fxbox,
and returns the previous content, atomically.
Gauche uses sequentially consistent order regardless of the memory-order argument.
[SRFI-230]{srfi.230
}
Compares the content of atomic fxbox fxbox and expected.
If both are the same (in eq?
sense), sets desired as the
new value of fxbox. Returns the previous content. All operations
are done atomically.
You can know the content is altered if (eq? return-value expected)
is true.
Gauche uses sequentially consistent order regardless of the memory-order argument.
[SRFI-230]{srfi.230
}
Retrieves the value of atomic fxbox fxbox, calculates
(+ prev-val fxval)
, (- prev-val fxval)
,
(logand prev-val fxval)
, (logior prev-val fxval
),
or (logxor prev-val fxval)
, respectively,
then store the result to fxbox, and returns the previsou value.
The entire sequence of operations are done atomically.
This does not check the numerical overflow.
Gauche uses sequentially consistent order regardless of the memory-order argument.
An atomic pair is a storage that can hold two Scheme values, and both can be updated at once atomically.
[SRFI-230]{srfi.230
}
Creates a new atomic pair that has two values, val1 and val2.
{srfi.230
}
[SRFI-230]{srfi.230
}
Returns #t
if obj
is an atomic pair,
#f
otherwise.
[SRFI-230]{srfi.230
}
Atomically dereference the two values apair holds,
and returns them as the two return values.
Gauche uses sequentially consistent order regardless of the memory-order argument.
[SRFI-230]{srfi.230
}
Atomically stores val1 and val2 to an atomic pair apair.
Returns an undefined value.
Gauche uses sequentially consistent order regardless of the memory-order argument.
[SRFI-230]{srfi.230
}
Atomically stores val1 and val2 to an atomic pair apair
and returns the previous values.
Gauche uses sequentially consistent order regardless of the memory-order argument.
[SRFI-230]{srfi.230
}
Compare two values in atomic box abox with expected1 and
expected2, respectively. If each corresponding values are
the same (in eq?
sense), store desired1 and desired2
to abox. Always returns teh original values.
The whole operations are done atomically.
You can know the values are altered by comparing returned values and expected values.
Gauche uses sequentially consistent order regardless of the memory-order argument.
[SRFI-230]{srfi.230
}
Synchronize memory according to at least memory-order
constraints. In the current version of Gauche,
regardless of memory-order,
the memory is synchronized with sequentially consistent manner.