2012年9月24日

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 Torstan 阅读(249) 评论(0) 推荐(0)

导航