patternMinor
What does "deterministic" mean in the context of memory management?
Viewed 0 times
thewhatmeanmanagementdeterministicdoesmemorycontext
Problem
At the time of writing, Wikipedia describes determinism as:
"a deterministic algorithm is an algorithm which, given a particular input, will always produce the same output, with the underlying machine always passing through the same sequence of states"
That aligns with my interpretation of determinism as a natural scientist.
If a program contains a benign race condition and its control flow varies depending upon the outcome of the race, is it deterministic? I would say not. However, many people describe thread-safe reference counting, such as
The Wikipedia page about garbage collection lists determinism as an advantage of reference counting compared to tracing collection and determinism is also referred to here. On the other hand, people have blogged rants explaining why this is wrong.
So what does "reference counting is deterministic" mean, if anything?
"a deterministic algorithm is an algorithm which, given a particular input, will always produce the same output, with the underlying machine always passing through the same sequence of states"
That aligns with my interpretation of determinism as a natural scientist.
If a program contains a benign race condition and its control flow varies depending upon the outcome of the race, is it deterministic? I would say not. However, many people describe thread-safe reference counting, such as
shared_ptr in C++, as deterministic even though threads race to decrement the reference count to zero and the winner is responsible for executing the destructor.The Wikipedia page about garbage collection lists determinism as an advantage of reference counting compared to tracing collection and determinism is also referred to here. On the other hand, people have blogged rants explaining why this is wrong.
So what does "reference counting is deterministic" mean, if anything?
Solution
So what does "reference counting is deterministic" mean, if anything?
It means it is deterministic in the absence of multiple threads. Threads almost always ruin this sort of determinism, with or without a race condition, memory collection or whatnot: in one run, thread A, can be scheduled first a bit, then another thread, B gets scheduled a bit; in a second run, the OS can schedule the threads to run in the opposite order, thus almost all threaded programs inherently lose this determinism.
Therefore "race condition" and "threads" usually put a procedure out of the scope of this use of this meaning of determinism.
It means it is deterministic in the absence of multiple threads. Threads almost always ruin this sort of determinism, with or without a race condition, memory collection or whatnot: in one run, thread A, can be scheduled first a bit, then another thread, B gets scheduled a bit; in a second run, the OS can schedule the threads to run in the opposite order, thus almost all threaded programs inherently lose this determinism.
Therefore "race condition" and "threads" usually put a procedure out of the scope of this use of this meaning of determinism.
Context
StackExchange Computer Science Q#16100, answer score: 3
Revisions (0)
No revisions yet.