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

Search:

Type: Posts; User: Arjay

Search: Search took 0.25 seconds.

  1. Replies
    22
    Views
    20,409

    Re: The strange performance of Visual C++ application

    Yes. Thanks Victor, I fixed it.
  2. Replies
    22
    Views
    20,409

    Re: The strange performance of Visual C++ application

    join should not be used in the ui thread because it blocks the ui thread and prevents it from pumping messages as mentioned earlier.

    The recommended approach is to have the worker thread use a...
  3. Replies
    22
    Views
    20,409

    Re: The strange performance of Visual C++ application

    Waiting is different than being blocked (when blocked no messages are being pumped in the ui thread). It's not clear if your ui thead is blocked. Also, how are you synchronizing the data that is...
  4. Replies
    22
    Views
    20,409

    Re: The strange performance of Visual C++ application

    Hopefully with the threads set to highest priority in your application, you don't plan on running any other application.
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured