summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-06-22 17:25:33 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-06-22 17:25:33 +0000
commit31504d488aa61f9ee1fcbff056095341e3ab4fca (patch)
tree63aac3a2e8103efae8137fff2caff03e8e03d0ab
parentc1e8c9222a81888a910f86842daec8bb7b5cae21 (diff)
downloadATCD-31504d488aa61f9ee1fcbff056095341e3ab4fca.tar.gz
ChangeLogTag:Fri Jun 22 07:33:45 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--THANKS1
-rw-r--r--ace/OS_TLI.h8
-rw-r--r--ace/OS_TLI.inl5
6 files changed, 29 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 47a69041b12..3d15d042034 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Fri Jun 22 07:33:45 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
+
+ * ace/OS_TLI.{h,inl}: Changed the signature of the t_open() and
+ t_accept() wrappers to use ACE_HANDLE rather than int. Thanks
+ to Steffen Hieber <Steffen.Hieber@erl9.siemens.de> for reporting
+ this.
+
Fri Jun 22 09:31:04 2001 Ossama Othman <ossama@uci.edu>
* html/index.html:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 47a69041b12..3d15d042034 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Fri Jun 22 07:33:45 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
+
+ * ace/OS_TLI.{h,inl}: Changed the signature of the t_open() and
+ t_accept() wrappers to use ACE_HANDLE rather than int. Thanks
+ to Steffen Hieber <Steffen.Hieber@erl9.siemens.de> for reporting
+ this.
+
Fri Jun 22 09:31:04 2001 Ossama Othman <ossama@uci.edu>
* html/index.html:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 47a69041b12..3d15d042034 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Fri Jun 22 07:33:45 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
+
+ * ace/OS_TLI.{h,inl}: Changed the signature of the t_open() and
+ t_accept() wrappers to use ACE_HANDLE rather than int. Thanks
+ to Steffen Hieber <Steffen.Hieber@erl9.siemens.de> for reporting
+ this.
+
Fri Jun 22 09:31:04 2001 Ossama Othman <ossama@uci.edu>
* html/index.html:
diff --git a/THANKS b/THANKS
index f7ce5508e1d..ec6e7ad2973 100644
--- a/THANKS
+++ b/THANKS
@@ -1268,6 +1268,7 @@ Victor Pitchouc <pitchouc@tlsoft.ru>
Srikanth Vedire <srvedire@yahoo.com>
J Shane Culpepper <pepper@channelogics.com>
Benn Howard <Benn_Howard@raytheon.com>
+Steffen Hieber <Steffen.Hieber@erl9.siemens.de>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson in the early 1990's. Paul devised the recursive Makefile
diff --git a/ace/OS_TLI.h b/ace/OS_TLI.h
index 46e4cba0e00..c3aedc53bfb 100644
--- a/ace/OS_TLI.h
+++ b/ace/OS_TLI.h
@@ -130,7 +130,7 @@ class ACE_OS_Export ACE_OS_TLI
public:
// = A set of wrappers for TLI.
static int t_accept (ACE_HANDLE fildes,
- int resfd,
+ ACE_HANDLE resfd,
struct t_call
*call);
static char *t_alloc (ACE_HANDLE fildes,
@@ -157,9 +157,9 @@ public:
static int t_listen (ACE_HANDLE fildes,
struct t_call *call);
static int t_look (ACE_HANDLE fildes);
- static int t_open (char *path,
- int oflag,
- struct t_info *info);
+ static ACE_HANDLE t_open (char *path,
+ int oflag,
+ struct t_info *info);
static int t_optmgmt (ACE_HANDLE fildes,
struct t_optmgmt *req,
struct t_optmgmt *ret);
diff --git a/ace/OS_TLI.inl b/ace/OS_TLI.inl
index c185db995d4..11e04259095 100644
--- a/ace/OS_TLI.inl
+++ b/ace/OS_TLI.inl
@@ -2,7 +2,8 @@
// $Id$
ACE_INLINE int
-ACE_OS_TLI::t_accept (ACE_HANDLE handle, int reshandle,
+ACE_OS_TLI::t_accept (ACE_HANDLE handle,
+ ACE_HANDLE reshandle,
struct t_call *call)
{
#if defined (ACE_HAS_TLI)
@@ -170,7 +171,7 @@ ACE_OS_TLI::t_look (ACE_HANDLE handle)
#endif /* ACE_HAS_TLI */
}
-ACE_INLINE int
+ACE_INLINE ACE_HANDLE
ACE_OS_TLI::t_open (char *path, int oflag, struct t_info *info)
{
#if defined (ACE_HAS_TLI)