Re: An atomic lock-free refcounting patent application
- From: Chris Thomasson <cristom_nospam@xxxxxxxxxxxxxxxxxxx>
- Date: Thu, 23 Mar 2006 17:02:51 -0800
Joe Seigh wrote:
Chris Thomasson wrote:
Joe Seigh wrote:
20060037026 Lightweight reference counting using single-target synchronization
I can't get the illustrations to display in my browser so I can't
say anything for sure but you might say it's interesting.
Humm... I would be interested to know if anybody thinks that there could be any infringement issues between my collector:
http://home.comcast.net/~vzoom/demos/pc_sample.c
and the SUN patent application. The form of ref-counting could be considered to be very similar... Any thoughts? My initial thought is probably not.
Their stuff is identical to atomic_ptr except they haven't specified how
the single target synchonization is accomplished. atomic_ptr uses
double wide compare and swap in that case. They implied it was based
on the technique in that paper I mentioned earlier but I'm not sure how
it will actually work. So you have to decide if part of your technique
is similar to the one in that paper.
Okay. The similarities in our algorithms seem to have nothing to do with single-target synchronization. It only has to do with the way are are managing the nodes lifetimes. They make a clear separation in the paper between the single-target stuff and the method used for node lifetime tracking.
The single-target stuff seems to involve alternating between two pointers (active and inactive). They are using the even or odd quality of a monotonic version counter to determine which pointer is active. They modify version counter along with the number of references there are to the node. They read the pointer along with the version count then double-check with CAS to make sure the pointer read is synchronized with the version read. Synchronized loads from multiple location snapshot type stuff. Like their KCSS implementation... I really do need to read through the patent claims.
.
- References:
- Re: An atomic lock-free refcounting patent application
- From: Chris Thomasson
- Re: An atomic lock-free refcounting patent application
- From: Joe Seigh
- Re: An atomic lock-free refcounting patent application
- Prev by Date: Re: An atomic lock-free refcounting patent application
- Next by Date: Re: race condition analysis
- Previous by thread: Re: An atomic lock-free refcounting patent application
- Next by thread: Use Lock
- Index(es):
Relevant Pages
|