1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
// -*- C++ -*-
// $Id$
#include "ace/OS_NS_errno.h"
// Accessors to PWD file.
ACE_INLINE void
ACE_OS::endpwent (void)
{
#if !defined (ACE_LACKS_PWD_FUNCTIONS)
# if !defined (ACE_WIN32)
::endpwent ();
# else
# endif /* ACE_WIN32 */
#else
#endif /* ! ACE_LACKS_PWD_FUNCTIONS */
}
ACE_INLINE struct passwd *
ACE_OS::getpwent (void)
{
#if !defined (ACE_LACKS_PWD_FUNCTIONS)
# if !defined (ACE_WIN32)
return ::getpwent ();
# else
ACE_NOTSUP_RETURN (0);
# endif /* ACE_WIN32 */
#else
ACE_NOTSUP_RETURN (0);
#endif /* ! ACE_LACKS_PWD_FUNCTIONS */
}
ACE_INLINE struct passwd *
ACE_OS::getpwnam (const char *name)
{
#if !defined (ACE_LACKS_PWD_FUNCTIONS)
# if !defined (ACE_WIN32)
return ::getpwnam (name);
# else
ACE_UNUSED_ARG (name);
ACE_NOTSUP_RETURN (0);
# endif /* ACE_WIN32 */
#else
ACE_UNUSED_ARG (name);
ACE_NOTSUP_RETURN (0);
#endif /* ACE_LACKS_PWD_FUNCTIONS */
}
ACE_INLINE struct passwd *
ACE_OS::getpwnam_r (const char *name, struct passwd *pwent,
char *buffer, int buflen)
{
#if defined (ACE_HAS_POSIX_GETPWNAM_R)
struct passwd *result;
int status;
status = ::getpwnam_r (name, pwent, buffer, buflen, &result);
if (status != 0)
{
errno = status;
result = 0;
}
return result;
#elif !defined (ACE_LACKS_PWD_FUNCTIONS)
# if defined (ACE_HAS_REENTRANT_FUNCTIONS)
# if !defined (ACE_LACKS_PWD_REENTRANT_FUNCTIONS)
# if defined (ACE_HAS_PTHREADS_STD) && \
!defined (ACE_HAS_STHREADS) || \
defined (HPUX_11) || \
defined (__USLC__) // Added by Roland Gigler for SCO UnixWare 7.
struct passwd *result;
int status;
# if defined (DIGITAL_UNIX)
::_Pgetpwnam_r (name, pwent, buffer, buflen, &result);
# else
// VAC++ doesn't correctly grok the ::getpwnam_r - the function is redefined
// in pwd.h, and that redefinition is used here
# if defined (__IBMCPP__) && (__IBMCPP__ >= 400) /* VAC++ 4 */
status = _posix_getpwnam_r (name, pwent, buffer, buflen, &result);
# else
status = ::getpwnam_r (name, pwent, buffer, buflen, &result);
# endif /* __IBMCPP__ && (__IBMCPP__ >= 400) */
if (status != 0)
{
errno = status;
result = 0;
}
# endif /* (DIGITAL_UNIX) */
return result;
# elif defined (AIX) || defined (HPUX_10)
if (::getpwnam_r (name, pwent, buffer, buflen) == -1)
return 0;
else
return pwent;
# else
return ::getpwnam_r (name, pwent, buffer, buflen);
# endif /* ACE_HAS_PTHREADS_STD */
# else
ACE_UNUSED_ARG (name);
ACE_UNUSED_ARG (pwent);
ACE_UNUSED_ARG (buffer);
ACE_UNUSED_ARG (buflen);
ACE_NOTSUP_RETURN (0);
# endif /* ! ACE_LACKS_PWD_REENTRANT_FUNCTIONS */
# else
ACE_UNUSED_ARG (name);
ACE_UNUSED_ARG (pwent);
ACE_UNUSED_ARG (buffer);
ACE_UNUSED_ARG (buflen);
ACE_NOTSUP_RETURN (0);
# endif /* ACE_HAS_REENTRANT_FUNCTIONS */
#else
ACE_UNUSED_ARG (name);
ACE_UNUSED_ARG (pwent);
ACE_UNUSED_ARG (buffer);
ACE_UNUSED_ARG (buflen);
ACE_NOTSUP_RETURN (0);
#endif /* ACE_HAS_POSIX_GETPWNAM_R */
}
ACE_INLINE void
ACE_OS::setpwent (void)
{
#if !defined (ACE_LACKS_PWD_FUNCTIONS)
# if !defined (ACE_WIN32)
::setpwent ();
# else
# endif /* ACE_WIN32 */
#else
#endif /* ! ACE_LACKS_PWD_FUNCTIONS */
}
|