Tagged Questions
The test-and-set tag has no wiki summary.
6
votes
3answers
682 views
.NET memory model, volatile variables, and test-and-set: what is guaranteed?
I know that the .NET memory model (on the .NET Framework; not compact/micro/silverlight/mono/xna/what-have-you) guaranteed that for certain types (most notably primitive integers and references) ...
0
votes
1answer
413 views
Is gcc's atomic test and set builtin the same as an atomic fetch and store operation?
I came across an atomic "fetch and store" instruction in the description of an MCS lock.
From what I gather, this atomically writes a value to a memory location and returns the original value of that ...
0
votes
2answers
725 views
How to use TestAndSet() for solving the critical section problem?
I'm studying for an exam and I'm having difficulty with a concept. This is the pseudo code I am given:
int mutex = 0;
do {
while (TestAndSet(&mutex));
// critical section
mutiex = 0;
// ...
0
votes
4answers
2k views
Atomic Instruction
What do you mean by Atomic instructions?
How does the following become Atomic?
TestAndSet
int TestAndSet(int *x){
register int temp = *x;
*x = 1;
return temp;
}
From a software ...
0
votes
2answers
621 views
How would one code test and set behavior without a special hardware instruction?
Most of the implementations I find require a hardware instruction to do this. However I strongly doubt this is required (if it is, I can't figure out why...)