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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// FIFO_Recv_Msg.cpp
// $Id$
/* -*- C++ -*- */
#define ACE_BUILD_DLL
#include "ace/FIFO_Recv_Msg.h"
ACE_ALLOC_HOOK_DEFINE(ACE_FIFO_Recv_Msg)
void
ACE_FIFO_Recv_Msg::dump (void) const
{
ACE_TRACE ("ACE_FIFO_Recv_Msg::dump");
ACE_FIFO_Recv::dump ();
}
// Note that persistent means "open FIFO for writing, as well as
// reading." This ensures that the FIFO never gets EOF, even if there
// aren't any writers at the moment!
int
ACE_FIFO_Recv_Msg::open (const char *fifo_name,
int flags,
int perms,
int persistent,
LPSECURITY_ATTRIBUTES sa)
{
ACE_TRACE ("ACE_FIFO_Recv_Msg::open");
return ACE_FIFO_Recv::open (fifo_name,
flags,
perms,
persistent,
sa);
}
ACE_FIFO_Recv_Msg::ACE_FIFO_Recv_Msg (void)
{
ACE_TRACE ("ACE_FIFO_Recv_Msg::ACE_FIFO_Recv_Msg");
}
ACE_FIFO_Recv_Msg::ACE_FIFO_Recv_Msg (const char *fifo_name,
int flags,
int perms,
int persistent,
LPSECURITY_ATTRIBUTES sa)
{
ACE_TRACE ("ACE_FIFO_Recv_Msg::ACE_FIFO_Recv_Msg");
if (this->ACE_FIFO_Recv_Msg::open (fifo_name,
flags,
perms,
persistent,
sa) == -1)
ACE_ERROR ((LM_ERROR, ASYS_TEXT ("%p\n"), ASYS_TEXT ("ACE_FIFO_Recv_Msg")));
}
|