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

Search:

Type: Posts; User: dktundwal

Search: Search took 0.01 seconds.

  1. Replies
    14
    Views
    42,587

    Re: Difference between mutex and critical section

    Mutex is a kernel object, only one entity(thread or process) can hold this object at a time

    Critical Section is a user object, only one thread at a time can have access to code, and can not be...
  2. Replies
    14
    Views
    42,587

    Re: Difference between mutex and critical section

    Mutex is a kernel object, only one entity(thread or process) can hold this object at a time

    section is a user object, only one thread at a time can have access to code, and can not be used between...
  3. Re: Returning a const char * pointer from C++ to C#?

    It must be IntPrt
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured