>> You'll need to find a concurrent solution. sorry. > > It is a concurrent solution :-)
concurrent != synchronised synchronised: safe under multi-threaded environment because it's ensured that only one thread runs the code at any time. concurrent: safe with multiple threads running over the same code. Probably not the best definition, but for example: HashMap is not multi-threaded safe, Hashtable is with synchronisation, and ConcurrentHashMap is with concurrency. ~mck _______________________________________________ Kernel-development mailing list [email protected] http://sesat.no/mailman/listinfo/kernel-development
