Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by JagadeeshVN

  1. JagadeeshVN

    Problem with Threads

    Thanks for the comments.... "I think what it means when an STL is not thread safe is that the objects aren't built to synchronize themselves between threads. So it doesn't necessarily mean you can't use them correctly in a threaded program, but you have to do any synchronization...
  2. JagadeeshVN

    Problem with Threads

    "It is just a coincidence that it is working." But, Its showing consistent behaviour when thread count is less than 8( no. of CPUs ). Have you ever heard of anything like the no. of threads, an application can have in UNIX should be less than the no. of CPUs. I dont agree with this...
  3. JagadeeshVN

    Problem with Threads

    Hi, I have an application which runs on HP-UX11i ( 8 processor machine ). From my application, I am spawning 16/20 threads for doing a heavy processing job. Actualy I am threading a method of one of my classes like this: int j = pthread_create( &threadId, NULL, CMyClass::ProcessThrFunc...
  4. JagadeeshVN

    Program's path

    Try this TCHAR tcModule[ _MAX_PATH ]; if ( GetModuleFileName( AfxGetResourceHandle(), tcModule, MAX_PATH ) ) { AfxMessageBox( tcModule ); }
  5. JagadeeshVN

    Discussion on window painting

    Pl. be more specific on the discussion topic. I am not getting any idea on what the topic is :-)
  6. JagadeeshVN

    can't detect ESC key, MFC

    What type of application are you using. Is it dialog based / views ? Also, Just check out whether you have assigned ESC key for accelerators ?

Part and Inventory Search

Back
Top