thread local storage
摘要:Thread local storage allows multi-threaded applications to have a separate instance of a given data item for each thread. Where a single-threaded application would use static or global data, this could lead to contention, dead lock or data corruption in a multi-threaded application. One example is t
阅读全文
posted @ 2012-09-24 20:46