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

Search:

Type: Posts; User: superbonzo

Search: Search took 0.03 seconds.

  1. Replies
    15
    Views
    9,482

    Re: AfxBeginThread

    even then, he could be using a heap manager different from the OS one ( AFAIR, the c runtime shipping with earlier vc++ versions used an internal heap for small allocations, for example ), so even...
  2. Replies
    15
    Views
    9,482

    Re: AfxBeginThread

    to avoid the effects of continuously creating/destroying thread objects, you could modify your second code snippet like this:



    CWinThread *m_Thread=NULL;

    for(;;)
    {
    if (m_Thread) {...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured