CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Arjay

Search: Search took 0.11 seconds.

  1. Replies
    9
    Views
    9,252

    Re: A few questions about thread safety

    If the original values can change during creation of the new immutable instance, then you should synchronize while creating the instance.
  2. Replies
    9
    Views
    9,252

    Re: A few questions about thread safety

    To start with make sure you understand the rules with regard to sharing resources between threads:

    1) If all threads only access a resource for reading, then no synchronization is required.
    2) If...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured