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

Search:

Type: Posts; User: rupeshkp728@gmail.com

Search: Search took 0.12 seconds.

  1. Run C++ class functions in thread

    I want to make a thread which will call functions of a class.
    I have changed the question with a simpler example to understand the problem:
    [/code]

    Suppose we have class rectangle


    class...
  2. Replies
    3
    Views
    1,705

    Re: Monitor Process Thread

    Thanks Itsme for the reply.
  3. Replies
    3
    Views
    1,705

    Monitor Process Thread

    I have created 3 threads in my code:

    #include <windows.h>
    #include <strsafe.h>

    #define MAX_THREADS 3
    #define BUF_SIZE 255

    typedef struct _MyData {
    int val1;
  4. Replies
    3
    Views
    1,393

    semaphore memory

    If say a process creates a semaphore/mutex etc then will this semaphore get created in its address space?
    If yes then how an another process which wants to acquire this semaphore(created by the...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured