[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.programming

Please read again

Ramine

9/15/2014 12:19:00 AM


Please read again, i correct some mistakes...


Hello,


As you have noticed i have implemented a scalable Lock better
than the MCS lock called scalable MLock, here it is:

https://sites.google.com/site/aminer68/scal...


But i have forgot to spook about Lock convoy, as you have noticed
the Optex lock implemented here by Jeffrey Richter tries to avoid
Lock convoy in its second implementation cause context switch to the
kernel mode by the semaphore is expensive and this will make the
service rate of the critical section more expensive and this is not good..

Read here:

http://msdn.microsoft.com/en-us/magazine/cc1...


But in my scalable MLock i am not context switching to kernel mode cause
my scalable MLock is working only in user space and this is good , cause
it higher the service rate of the critical section and this is better to
reduce the probability to have a Lock convoy, other than that
to reduce better the probability of lock convoy or to avoid completly
lock convoy the service rate of the critical section must be faster than
the arrival rate of the threads to the critical section and
also you can lower the size of the critical section also.


So hope you will find my new algorithm called scalable MLock
very interresting.


Thank you,
Amine Moulay Ramdane.




1 Answer

Chris M. Thomasson

9/27/2014 9:55:00 PM

0

> "Ramine" wrote in message news:lv50m8$p6$2@dont-email.me...

[...]

> But i have forgot to spook about Lock convoy, as you have noticed
> the Optex lock implemented here by Jeffrey Richter...
[...]

Optex by Jeffrey Richter is a piece of shi%...

;^o