summaryrefslogtreecommitdiff
path: root/ace/OS.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-13 00:33:39 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-13 00:33:39 +0000
commit78863f3fe96fd2bce66b8553d4e35526a77d6515 (patch)
treef22534e570a104730a9a376daee5150f2417a556 /ace/OS.h
parent8f646cddddbc81f4c7711803accb4a5d56f62c87 (diff)
downloadATCD-78863f3fe96fd2bce66b8553d4e35526a77d6515.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/OS.h')
-rw-r--r--ace/OS.h19
1 files changed, 12 insertions, 7 deletions
diff --git a/ace/OS.h b/ace/OS.h
index 8a656ea35ef..e7a704fc7b3 100644
--- a/ace/OS.h
+++ b/ace/OS.h
@@ -4802,8 +4802,8 @@ public:
static int rename (const char *old_name,
const char *new_name);
static int unlink (const char *path);
- static char *tempnam (const char *dir,
- const char *pfx);
+ static char *tempnam (const char *dir = 0,
+ const char *pfx = 0);
# endif /* ACE_HAS_MOSTLY_UNICODE_APIS */
// = A set of wrappers for random number operations.
@@ -4917,11 +4917,6 @@ public:
struct sockaddr *addr,
int addrlen);
static int closesocket (ACE_HANDLE s);
- static struct passwd *getpwnam (const char *user);
- static struct passwd *getpwnam_r (const char *name,
- struct passwd *pwent,
- char *buffer,
- int buflen);
static struct hostent *gethostbyaddr (const char *addr,
int length,
int type);
@@ -5010,6 +5005,16 @@ public:
static int socket_fini (void);
// Finalize WinSock after last use (e.g., when a DLL is unloaded).
+ // = A set of wrappers for password routines.
+ static void setpwent (void);
+ static void endpwent (void);
+ static struct passwd *getpwent (void);
+ static struct passwd *getpwnam (const char *user);
+ static struct passwd *getpwnam_r (const char *name,
+ struct passwd *pwent,
+ char *buffer,
+ int buflen);
+
// = A set of wrappers for regular expressions.
static char *compile (const char *instring,
char *expbuf,