Hi,
As I flesh out my latest project, it occurred to me that I will be having multiple worker threads all writing to a status table, potentially at the same time. Does Oscript have anything besides $Kernel.Mutex.New() to ensure that a block of code I'm running can only be run by one of the threads, and the other thread goes into a wait? If I use the aforementioned method, I'd have to write my own wait loop to wait for it.
If this is the best there is, I'll use this approach. It's too bad that Oscript doesn't have the concept of a synchronize block (from Java) so that only one thread can execute the method.
-Hugh