关于stlport的线程安全诠释

  • simultaneous read access to the same container from within separate threads is safe;
  • simultaneous access to distinct containers (not shared between threads) is safe;
  • user must provide synchronization for all accesses if any thread may modify shared container;

     

    详情参考:http://www.stlport.org/doc/sgi_stl.html#thread_safety

  • 你可能感兴趣的:(thread,Access,containers)