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

Search:

Type: Posts; User: Arjay

Search: Search took 0.26 seconds.

  1. Replies
    15
    Views
    14,084

    Re: Mutual exclusion strategy

    This thread is more interesting than trying to figure out why intellisense doesn't work in a 7 year old environment. ;)

    My point is that if you need different behavior from what a critical...
  2. Replies
    15
    Views
    14,084

    Re: Mutual exclusion strategy

    You've made a few statements that I want to comment on.

    I don't understand why you are worried about the same thread being able to reenter a critical section as a critical section is designed to...
  3. Replies
    15
    Views
    14,084

    Re: Mutual exclusion strategy

    One possibility is to have the producers write to a temporary buffer. Then when the library method returns you copy the data into the circular buffer and act on it. That way a user doesn't...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured