Date: Sat, 19 Dec 2009 23:48:12 -0800 From: Joe Marshall <[email protected]>
You need to avoid a race between two processes trying to modify the cell at the same time. None of the hash table implementation is safe for concurrent update. It is protected only against interruption during updates. If you want to make concurrent updates to a hash table safe, you must synchronize them yourself, for instance with a mutex. _______________________________________________ MIT-Scheme-devel mailing list [email protected] http://lists.gnu.org/mailman/listinfo/mit-scheme-devel
