[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.programming

My new algorithm that looks like RCU is here

Ramine

5/9/2016 7:35:00 PM

Hello,


My new algorithm that looks like RCU is here, it doesn't use
any atomic operations and/or StoreLoad style memory barriers
on the reader side, and it is finally implemented, you can download it
from here:

https://sites.google.com/site/aminer68/scalable-distributed-reader-wr...


It is not the version 1 based on Dmitry Vyukov ,
but it is the version 2 that is own algorithm,
look at my version 2 algorithm implementation inside
DRWLOCK.pas source code.



Thank you,
Amine Moulay Ramdane.



2 Answers

Ramine

5/9/2016 7:42:00 PM

0

On 5/9/2016 12:35 PM, Ramine wrote:
> Hello,
>
>
> My new algorithm that looks like RCU is here, it doesn't use
> any atomic operations and/or StoreLoad style memory barriers
> on the reader side, and it is finally implemented, you can download it
> from here:
>
> https://sites.google.com/site/aminer68/scalable-distributed-reader-wr...
>
>
>
> It is not the version 1 based on Dmitry Vyukov ,
> but it is the version 2 that is own algorithm,

I mean: but it is the version 2 that is my own algorithm.

> look at my version 2 algorithm implementation inside
> DRWLOCK.pas source code.
>
>
>
> Thank you,
> Amine Moulay Ramdane.
>
>
>

Ramine

5/9/2016 8:34:00 PM

0


Hello,

To compile test1.pas example that uses my powerful Scalable Asymmetric
Distributed Reader-Writer Mutex, please uncomment define option
"version1" inside defines1.inc and comment the define option
"version2" inside defines1.inc


Thank you,
Amine Moulay Ramdane.