Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
1d5bd47c
Commit
1d5bd47c
authored
May 25, 2012
by
Mukund Sivaraman
Browse files
[1704] Add documentation for setInterprocessSync()
parent
328f8781
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/lib/log/logger.h
View file @
1d5bd47c
...
...
@@ -240,8 +240,15 @@ public:
/// \brief Replace the interprocess synchronization object
///
/// This method is exception-free. If this method is called with
/// NULL as the argument, it does nothing and the old sync object is
/// used as before.
///
/// \param sync The logger uses this synchronization object for
/// synchronizing output of log messages.
/// synchronizing output of log messages. If NULL is passed, the old
/// synchronization object is used as before. When a non-NULL sync
/// object is passed, it should be deletable and the ownership is
/// transferred to the logger.
void
setInterprocessSync
(
isc
::
util
::
InterprocessSync
*
sync
);
/// \brief Equality
...
...
src/lib/log/logger_impl.h
View file @
1d5bd47c
...
...
@@ -171,8 +171,15 @@ public:
/// \brief Replace the interprocess synchronization object
///
/// This method is exception-free. If this method is called with
/// NULL as the argument, it does nothing and the old sync object is
/// used as before.
///
/// \param sync The logger uses this synchronization object for
/// synchronizing output of log messages.
/// synchronizing output of log messages. If NULL is passed, the old
/// synchronization object is used as before. When a non-NULL sync
/// object is passed, it should be deletable and the ownership is
/// transferred to the logger implementation.
void
setInterprocessSync
(
isc
::
util
::
InterprocessSync
*
sync
);
/// \brief Equality
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment