You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hi
the classical solution for strong thread safety is differential
reference counting. This has the disadvantage that any reference counted
object (or its management object) needs to be aware of the strong thread
safety requirement and provide a second counter for the strong references.
So it is not possible to implement strong thread safety on top of
existing reference counted objects. Furthermore the existence of only
one strongly thread safe pointer causes a runtime overhead on /any/
reference counted object (CPU and memeory).
I am seeking for a solution to implement strong thread safety on top of
an existing reference counted object which provides only /one/ counter.
Has anyone heard of something like that? Has it an name?