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

Search:

Type: Posts; User: cilu

Search: Search took 2.29 seconds.

  1. Replies
    5
    Views
    10,617

    Re: QueryPerformanceCounter failure

    I didn't say that the problem is multi-threading, I just wanted to give as much details as possible. The code posted is taken from a member function of a CDocument derived class.
  2. Replies
    5
    Views
    10,617

    Re: QueryPerformanceCounter failure

    I forgot to mention that I'm doing this in a multi-thread MDI application. I cannot post it here, it has more than 200,000 code lines and it ain't worth to isolate just that part.

    I tried to...
  3. Replies
    5
    Views
    10,617

    QueryPerformanceCounter failure

    Hi,

    I'm getting an error while calling QueryPerformanceCounter and I don't know why.


    LARGE_INTEGER start;
    BOOL bRet = QueryPerformanceCounter(&start);

    ASSERT(bRet);
    if(FALSE == bRet)
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured