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
▼
Kea
►
Kea Developer's Guide
►
Kea Bootp Hooks Library
►
Kea Flexible Option Hooks Library
►
Kea PerfMon Hooks Library
►
libkea-d2srv - Kea D2 Server Library
►
libkea-kea_tcp - TCP Listener Library
Todo List
►
Topics
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
src
►
bin
►
hooks
▼
lib
►
asiodns
►
asiolink
►
cc
►
config
►
config_backend
►
cryptolink
►
d2srv
►
database
►
dhcp
►
dhcp_ddns
►
dhcpsrv
►
dns
►
eval
►
exceptions
►
hooks
►
http
▼
log
►
compiler
▼
interprocess
►
interprocess_sync.h
interprocess_sync_file.cc
►
interprocess_sync_file.h
interprocess_sync_null.cc
►
interprocess_sync_null.h
buffer_appender_impl.cc
►
buffer_appender_impl.h
►
log_dbglevels.cc
log_dbglevels.h
►
log_formatter.cc
►
log_formatter.h
►
log_messages.cc
log_messages.h
logger.cc
►
logger.h
►
logger_impl.cc
►
logger_impl.h
►
logger_level.cc
►
logger_level.h
logger_level_impl.cc
►
logger_level_impl.h
logger_manager.cc
►
logger_manager.h
logger_manager_impl.cc
►
logger_manager_impl.h
►
logger_name.cc
►
logger_name.h
►
logger_specification.h
►
logger_support.cc
►
logger_support.h
►
logger_unittest_support.cc
►
logger_unittest_support.h
►
logimpl_messages.cc
logimpl_messages.h
►
macros.h
message_dictionary.cc
►
message_dictionary.h
►
message_exception.h
message_initializer.cc
►
message_initializer.h
message_reader.cc
►
message_reader.h
►
message_types.h
►
output_option.cc
►
output_option.h
►
mysql
►
pgsql
►
process
►
stats
►
tcp
►
testutils
►
util
►
yang
►
File Members
interprocess_sync_null.cc
Go to the documentation of this file.
1
// Copyright (C) 2012-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 <
log/interprocess/interprocess_sync_null.h
>
10
11
namespace
isc
{
12
namespace
log {
13
namespace
interprocess {
14
15
InterprocessSyncNull::~InterprocessSyncNull
() {
16
}
15
InterprocessSyncNull::~InterprocessSyncNull
() {
…
}
17
18
bool
19
InterprocessSyncNull::lock
() {
20
is_locked_
=
true
;
21
return
(
true
);
22
}
19
InterprocessSyncNull::lock
() {
…
}
23
24
bool
25
InterprocessSyncNull::tryLock
() {
26
is_locked_
=
true
;
27
return
(
true
);
28
}
25
InterprocessSyncNull::tryLock
() {
…
}
29
30
bool
31
InterprocessSyncNull::unlock
() {
32
is_locked_
=
false
;
33
return
(
true
);
34
}
31
InterprocessSyncNull::unlock
() {
…
}
35
36
}
// namespace interprocess
37
}
// namespace log
38
}
// namespace isc
isc::log::interprocess::InterprocessSyncNull::tryLock
bool tryLock()
Try to acquire a lock (doesn't block)
Definition
interprocess_sync_null.cc:25
isc::log::interprocess::InterprocessSyncNull::~InterprocessSyncNull
virtual ~InterprocessSyncNull()
Destructor.
Definition
interprocess_sync_null.cc:15
isc::log::interprocess::InterprocessSyncNull::lock
bool lock()
Acquire the lock (never blocks)
Definition
interprocess_sync_null.cc:19
isc::log::interprocess::InterprocessSyncNull::unlock
bool unlock()
Release the lock.
Definition
interprocess_sync_null.cc:31
isc::log::interprocess::InterprocessSync::is_locked_
bool is_locked_
Is the lock taken?
Definition
interprocess_sync.h:77
interprocess_sync_null.h
isc
Defines the logger used by the top-level component of kea-lfc.
Definition
agent_parser.cc:148
src
lib
log
interprocess
interprocess_sync_null.cc
Generated on Fri Apr 4 2025 17:50:30 for Kea by
1.12.0