summaryrefslogtreecommitdiff
path: root/ace/OS_TLI.inl
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-06-26 21:19:42 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-06-26 21:19:42 +0000
commit15dca883db37e59639e6a7ca7f9824df58bc3e08 (patch)
treecb09060c2de8c7cf81d0e4855ec0d89b25b622e0 /ace/OS_TLI.inl
parentd74a25d3bbe2e911d74795036bb58a6e39d9ee62 (diff)
downloadATCD-15dca883db37e59639e6a7ca7f9824df58bc3e08.tar.gz
ChangeLogTag:Mon Jun 25 15:36:55 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'ace/OS_TLI.inl')
-rw-r--r--ace/OS_TLI.inl6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/OS_TLI.inl b/ace/OS_TLI.inl
index 3d81223fd71..675affa365a 100644
--- a/ace/OS_TLI.inl
+++ b/ace/OS_TLI.inl
@@ -61,7 +61,7 @@ ACE_OS_TLI::t_close (ACE_HANDLE handle)
}
ACE_INLINE int
-ACE_OS_TLI::t_connect(int fildes,
+ACE_OS_TLI::t_connect(ACE_HANDLE fildes,
struct t_call *sndcall,
struct t_call *rcvcall)
{
@@ -175,13 +175,13 @@ ACE_INLINE ACE_HANDLE
ACE_OS_TLI::t_open (char *path, int oflag, struct t_info *info)
{
#if defined (ACE_HAS_TLI)
- ACE_OSCALL_RETURN (::t_open (path, oflag, info), int, -1);
+ ACE_OSCALL_RETURN (::t_open (path, oflag, info), ACE_HANDLE, ACE_INVALID_HANDLE);
#else
ACE_UNUSED_ARG (path);
ACE_UNUSED_ARG (oflag);
ACE_UNUSED_ARG (info);
- ACE_NOTSUP_RETURN (ACE_INVALID_HANDLE);
+ ACE_NOTSUP_RETURN (-1);
#endif /* ACE_HAS_TLI */
}