summaryrefslogtreecommitdiff
path: root/docs/tutorials/019/client2.cpp
blob: fc212281a2ff1d452cb15c90b0ee3b6a71ca3405 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

// $Id$

#include "shmem.h"

#if defined(ACE_LACKS_SYSV_SHMEM)
int main (int, char *[])
{
	ACE_ERROR_RETURN ((LM_ERROR, "System V Shared Memory not available on this platform\n"),100);
}
#else // ACE_LACKS_SYSV_SHMEM
int main (int, char *[])
{
    ACE_Shared_Memory_SV shm_client (SHM_KEY, sizeof(SharedData));
    
    char *shm = (char *) shm_client.malloc ();

    ACE_DEBUG ((LM_INFO, "(%P|%t) Shared Memory is at 0x%x\n",
                shm ));

        /*
          More placement new.  The constructor parameter prevents
          clobbering what the server may have written with it's show() 
          method.
        */
    SharedData * sd = new(shm) SharedData(0);

        // Show it
    sd->show();
        // Change it
    sd->set();
        // Advertise it
    sd->available(1);

    shm_client.close();
        
    return 0;
}

#endif // ACE_LACKS_SYSV_SHMEM