summaryrefslogtreecommitdiff
path: root/ace/FIFO_Send_Msg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/FIFO_Send_Msg.cpp')
-rw-r--r--ace/FIFO_Send_Msg.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/ace/FIFO_Send_Msg.cpp b/ace/FIFO_Send_Msg.cpp
index e88c1243688..7691a16026c 100644
--- a/ace/FIFO_Send_Msg.cpp
+++ b/ace/FIFO_Send_Msg.cpp
@@ -26,9 +26,9 @@ ACE_FIFO_Send_Msg::send (const ACE_Str_Buf &send_msg)
{
// ACE_TRACE ("ACE_FIFO_Send_Msg::send");
#if defined (ACE_HAS_STREAM_PIPES)
- return ACE_OS::putmsg (this->get_handle (),
- (strbuf *) 0,
- (strbuf *) &send_msg,
+ return ACE_OS::putmsg (this->get_handle (),
+ (strbuf *) 0,
+ (strbuf *) &send_msg,
0);
#else
iovec iov[2];
@@ -49,8 +49,8 @@ ACE_FIFO_Send_Msg::ACE_FIFO_Send_Msg (void)
}
int
-ACE_FIFO_Send_Msg::open (const char *fifo_name,
- int flags,
+ACE_FIFO_Send_Msg::open (const ASYS_TCHAR *fifo_name,
+ int flags,
int perms,
LPSECURITY_ATTRIBUTES sa)
{
@@ -58,8 +58,8 @@ ACE_FIFO_Send_Msg::open (const char *fifo_name,
return ACE_FIFO_Send::open (fifo_name, flags | O_WRONLY, perms, sa);
}
-ACE_FIFO_Send_Msg::ACE_FIFO_Send_Msg (const char *fifo_name,
- int flags,
+ACE_FIFO_Send_Msg::ACE_FIFO_Send_Msg (const ASYS_TCHAR *fifo_name,
+ int flags,
int perms,
LPSECURITY_ATTRIBUTES sa)
{