summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2002-03-14 07:14:34 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2002-03-14 07:14:34 +0000
commitefcf30f7ca035f8d9cb4c1b4bb0b3fb07c884c53 (patch)
tree6588de467449f32cf3c03302238fff479b9e1876 /ace
parentb55f06ff9a2673ca7458e85bdd528a74a23d44a3 (diff)
downloadATCD-efcf30f7ca035f8d9cb4c1b4bb0b3fb07c884c53.tar.gz
ChangeLogTag:Wed Mar 13 15:55:54 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'ace')
-rw-r--r--ace/OS.h2
-rw-r--r--ace/SPIPE_Acceptor.h10
2 files changed, 6 insertions, 6 deletions
diff --git a/ace/OS.h b/ace/OS.h
index 6f79c137933..f672a84d7f1 100644
--- a/ace/OS.h
+++ b/ace/OS.h
@@ -310,7 +310,7 @@ typedef int key_t;
# define ENOMEM 12 /* Not enough core */
# endif /* ENOMEM */
# if !defined (EACCESS)
-# define EACCES 13 /* Permission denied */
+# define EACCESS 13 /* Permission denied */
# endif /* EACCESS */
# if !defined (EFAULT)
# define EFAULT 14 /* Bad access */
diff --git a/ace/SPIPE_Acceptor.h b/ace/SPIPE_Acceptor.h
index cb2b536f736..e4e0a191229 100644
--- a/ace/SPIPE_Acceptor.h
+++ b/ace/SPIPE_Acceptor.h
@@ -6,11 +6,11 @@
*
* $Id$
*
- * @author Doug Schmidt and Prashant Jain
+ * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> and
+ * Prashant Jain <pjain@cs.wustl.edu>
*/
//=============================================================================
-
#ifndef ACE_SPIPE_ACCEPTOR_H
#define ACE_SPIPE_ACCEPTOR_H
#include "ace/pre.h"
@@ -89,10 +89,10 @@ private:
// This allows the get_handle()-obtained handle to be used for
// registering with the reactor (albeit for signal, not input)
// to tell when a pipe accept is done.
- ACE_OVERLAPPED overlapped_;
+ ACE_OVERLAPPED overlapped_;
ACE_Manual_Event event_;
- ACE_HANDLE pipe_handle_;
- int already_connected_;
+ ACE_HANDLE pipe_handle_;
+ int already_connected_;
#endif /* ACE_WIN32 */
};