mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
fix typo
This commit is contained in:
@@ -791,7 +791,7 @@
|
||||
</title>
|
||||
|
||||
<para><command>udevadm lock</command> takes an (advisory) exclusive lock(s) on a block device (or
|
||||
multiple therof), as per <ulink url="https://systemd.io/BLOCK_DEVICE_LOCKING">Locking Block Device
|
||||
multiple thereof), as per <ulink url="https://systemd.io/BLOCK_DEVICE_LOCKING">Locking Block Device
|
||||
Access</ulink> and invokes a program with the lock(s) taken. When the invoked program exits the lock(s)
|
||||
are automatically released.</para>
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ static int help(void) {
|
||||
|
||||
printf("%s [OPTIONS...] COMMAND\n"
|
||||
"%s [OPTIONS...] --print\n"
|
||||
"\n%sLock a block device and run a comand.%s\n\n"
|
||||
"\n%sLock a block device and run a command.%s\n\n"
|
||||
" -h --help Print this message\n"
|
||||
" -V --version Print version of the program\n"
|
||||
" -d --device=DEVICE Block device to lock\n"
|
||||
@@ -247,7 +247,7 @@ static int lock_device(
|
||||
|
||||
/* flock() doesn't support a time-out. Let's fake one then. The traditional way to do
|
||||
* this is via alarm()/setitimer()/timer_create(), but that's racy, given that the
|
||||
* SIGALRM might aleady fire between the alarm() and the flock() in which case the
|
||||
* SIGALRM might already fire between the alarm() and the flock() in which case the
|
||||
* flock() is never cancelled and we lock up (this is a short time window, but with
|
||||
* short timeouts on a loaded machine we might run into it, who knows?). Let's
|
||||
* instead do the lock out-of-process: fork off a child that does the locking, and
|
||||
|
||||
Reference in New Issue
Block a user