Hi all,
Anyone know how to create a reliable critical section in
JS ?
I am triggering many events at once (a must in my application) which should handle parts of the DOM. The lack of critical section causes a race condition, and a corruption of data.:(
I found only this on the subject:
http://www.onjava.com/pub/a/onjava/2...on.html?page=2
but it seems like i still have race conditions