Kea
2.7.8
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
Enumerator
a
b
c
d
e
f
h
i
k
m
n
o
p
r
s
t
u
w
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Typedefs
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
v
w
y
Enumerations
a
c
d
e
f
h
i
l
m
n
o
p
q
r
s
t
u
w
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
y
Related Symbols
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
y
Functions
a
b
c
d
e
g
h
i
l
m
n
p
q
r
s
u
v
w
y
Variables
b
c
d
e
f
h
l
n
o
p
q
r
s
t
u
y
Typedefs
Enumerations
Enumerator
d
s
Macros
a
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
u
v
y
interprocess_util.cc
Go to the documentation of this file.
1
// Copyright (C) 2013-2015 Internet Systems Consortium, Inc. ("ISC")
2
//
3
// This Source Code Form is subject to the terms of the Mozilla Public
4
// License, v. 2.0. If a copy of the MPL was not distributed with this
5
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7
#include <config.h>
8
9
#include <gtest/gtest.h>
10
11
#include <sys/select.h>
12
#include <cstddef>
13
14
namespace
isc
{
15
namespace
util {
16
namespace
unittests {
17
18
unsigned
char
19
parentReadState
(
int
fd) {
20
unsigned
char
result = 0xff;
21
22
fd_set rfds;
23
FD_ZERO(&rfds);
24
FD_SET(fd, &rfds);
25
26
struct
timeval tv = {5, 0};
27
28
const
int
nfds = select(fd + 1, &rfds, NULL, NULL, &tv);
29
EXPECT_EQ(1, nfds);
30
31
if
(nfds == 1) {
32
// Read status
33
const
ssize_t bytes_read = read(fd, &result,
sizeof
(result));
34
EXPECT_EQ(
static_cast<
ssize_t
>
(
sizeof
(result)), bytes_read);
35
}
36
37
return
(result);
38
}
19
parentReadState
(
int
fd) {
…
}
39
40
}
41
}
42
}
isc::util::unittests::parentReadState
unsigned char parentReadState(int fd)
A helper utility for a simple synchronization with another process.
Definition
interprocess_util.cc:19
isc
Defines the logger used by the top-level component of kea-lfc.
Definition
agent_parser.cc:148
src
lib
util
unittests
interprocess_util.cc
Generated on Fri Apr 4 2025 17:50:30 for Kea by
1.12.0