blob: daa8d3304ad347a9d1a5a185af4cb9457ce67137 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// $Id$
#include "ace/FIFO_Send_Msg.h"
#include "ace/Log_Msg.h"
#include "ace/OS_NS_stropts.h"
ACE_RCSID(FIFO, client, "$Id$")
int
ACE_TMAIN (int, ACE_TCHAR *[])
{
char buf[] = "hello world";
ACE_Str_Buf msg (buf, sizeof buf);
ACE_FIFO_Send_Msg fifo_sender (ACE_DEFAULT_RENDEZVOUS,
O_WRONLY | O_CREAT,
ACE_DEFAULT_FILE_PERMS);
if (fifo_sender.send (msg) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "send error for fifo"), -1);
else
return 0;
}
|