blob: f4af340a0126f9e01ecc0c1994fb14fc362285d7 (
plain)
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
|
// $Id$
// Since this is only included in Handle_Gobbler.h, these should be
// inline, not ACE_INLINE.
// FUZZ: disable check_for_inline
inline void
ACE_Handle_Gobbler::close_remaining_handles (void)
{
HANDLE_SET::iterator iterator =
this->handle_set_.begin ();
HANDLE_SET::iterator end =
this->handle_set_.end ();
for (;
iterator != end;
++iterator)
{
ACE_OS::close (*iterator);
}
}
inline
ACE_Handle_Gobbler::~ACE_Handle_Gobbler (void)
{
this->close_remaining_handles ();
}
inline int
ACE_Handle_Gobbler::free_handles (size_t n_handles)
{
HANDLE_SET::iterator iterator =
this->handle_set_.begin ();
HANDLE_SET::iterator end =
this->handle_set_.end ();
for (;
iterator != end && n_handles > 0;
++iterator, --n_handles)
{
int result = ACE_OS::close (*iterator);
if (result != 0)
return result;
}
return 0;
}
inline int
ACE_Handle_Gobbler::consume_handles (size_t n_handles_to_keep_available)
{
int result = 0;
#if defined(ACE_WIN32)
// On Win32, this style of gobbling doesn't seem to work.
ACE_UNUSED_ARG(n_handles_to_keep_available);
#else
while (1)
{
ACE_HANDLE handle = ACE_OS::open (ACE_DEV_NULL, O_WRONLY);
if (handle == ACE_INVALID_HANDLE)
{
if (ACE::out_of_handles (errno))
{
result = this->free_handles (n_handles_to_keep_available);
break;
}
else
{
result = -1;
break;
}
}
result = this->handle_set_.insert (handle);
if (result == -1)
break;
}
#endif /* ACE_WIN32 */
return result;
}
|