<listitem>
<simpara>
- <command>--service <replaceable>serive-name</replaceable></command> specifies the
+ <command>--service <replaceable>service-name</replaceable></command> specifies the
target of a command. If not given, CA will be used as target. May be used more
than once to specify multiple targets.
</simpara>
IOSignalQueue::IOSignalQueue(asiolink::IOServicePtr& io_service)
: io_service_(io_service), signals_() {
if (!io_service_) {
- isc_throw(IOSignalError, "IOSignalQueue - io_serivce cannot be NULL");
+ isc_throw(IOSignalError, "IOSignalQueue - io_service cannot be NULL");
}
}
interrupted upon signal receipt as is the select() function and while
boost::asio provides a signal mechanism it requires linking in additional
libraries. Therefore, CPL provides its own signal handling mechanism to
-propagate an OS signal such as SIGHUP to an IOSerivce as a ready event with a
+propagate an OS signal such as SIGHUP to an IOService as a ready event with a
callback.
isc::process::DControllerBase uses two mechanisms to carry out signal handling. It