]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
man: use the term 'calling process' instead of 'current process'
authorChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>
Mon, 20 Apr 2026 02:19:40 +0000 (22:19 -0400)
committerChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>
Tue, 21 Apr 2026 13:52:30 +0000 (09:52 -0400)
Signed-off-by: Christian Goeschel Ndjomouo <cgoesc2@wgu.edu>
misc-utils/kill.1.adoc
sys-utils/mount.8.adoc
sys-utils/pivot_root.8.adoc
sys-utils/prlimit.1.adoc
term-utils/agetty.8.adoc

index 530b8758dcdf2302c35b6a652cfd7115fc9dd7bd..bae0cc69c2b920aa5af59dc148ec4a0580c52d30 100644 (file)
@@ -46,7 +46,7 @@ Each _PID_ can be expressed in one of the following ways:
 _n_;;
 where _n_ is larger than 0. The process with PID _n_ is signaled.
 *0*;;
-All processes in the current process group are signaled.
+All processes in the calling process group are signaled.
 *-1*;;
 All processes with a PID larger than 1 are signaled.
 **-**__n__;;
index 21836136eddcbf8c3cf37cb854f3629e8008c529..55f5227509c9c01ce971598eda5293ff71c1bf04 100644 (file)
@@ -879,7 +879,7 @@ Set the permission mask for ADFS 'owner' permissions and 'other' permissions, re
 === Mount options for affs
 
 **uid=**__value__ and **gid=**__value__::
-Set the owner and group of the root of the filesystem (default: uid=gid=0, but with option *uid* or *gid* without specified value, the UID and GID of the current process are taken).
+Set the owner and group of the root of the filesystem (default: uid=gid=0, but with option *uid* or *gid* without specified value, the UID and GID of the calling process are taken).
 
 **setuid=**__value__ and **setgid=**__value__::
 Set the owner and group of all files.
@@ -975,7 +975,7 @@ Set the umask applied to regular files only. The default is the umask of the cur
 This option controls the permission check of mtime/atime.  Possible values:
 
 *20*;;
-If the current process is in the group of the file's group ID,
+If the calling process is in the group of the file's group ID,
 you can change the timestamp.
 +
 *2*;;
@@ -985,7 +985,7 @@ Other users can change the timestamp.
 The default is set from the above *dmask* option. (If the directory
 is writable, *utime*(2) is also allowed.  That is: ~dmask & 022.)
  +
-Normally *utime*(2) checks that the current process is the owner of the
+Normally *utime*(2) checks that the calling process is the owner of the
 file, or that it has the *CAP_FOWNER* capability. But FAT filesystems
 don't have UID/GID on disk, so the normal check is too inflexible.
 With this option you can relax it.
index c4acbbbbf6440cd8a5d81c4a750098b3079cd07c..a757cd6e3e4a15792684074ada62f719897fdb74 100644 (file)
@@ -16,7 +16,7 @@ pivot_root - change the root filesystem
 
 == DESCRIPTION
 
-*pivot_root* moves the root filesystem of the current process to the directory _put_old_ and makes _new_root_ the new root filesystem. Since *pivot_root*(8) simply calls *pivot_root*(2), we refer to the man page of the latter for further details.
+*pivot_root* moves the root filesystem of the calling process to the directory _put_old_ and makes _new_root_ the new root filesystem. Since *pivot_root*(8) simply calls *pivot_root*(2), we refer to the man page of the latter for further details.
 
 Note that, depending on the implementation of *pivot_root*, root and current working directory of the caller may or may not change. The following is a sequence for invoking *pivot_root* that works in either case, assuming that *pivot_root* and *chroot* are in the current *PATH*:
 
index 907f07e39b2125d9650380d9b8113e73b8b2bf0f..129cc2e43e4cbf50779348a4acc0b4ca62bbf3ab 100644 (file)
@@ -130,7 +130,7 @@ Display the limits of the RSS, and set the soft and hard limits for the number o
 Modify only the soft limit for the number of processes.
 
 *prlimit --pid $$ --nproc=unlimited*::
-Set for the current process both the soft and ceiling values for the number of processes to unlimited.
+Set for the calling process both the soft and ceiling values for the number of processes to unlimited.
 
 *prlimit --cpu=10 sort -u hugefile*::
 Set both the soft and hard CPU time limit to ten seconds and run *sort*(1).
index d8a02141489953749310091b701284089bf9d339..ac6e2efa5342495e5244978607603c326264d4c6 100644 (file)
@@ -359,7 +359,7 @@ The baud-rate detection feature (the *--extract-baud* option) requires that the
 
 == DIAGNOSTICS
 
-Depending on how the program was configured, all diagnostics are written to the console device or reported via the *syslog*(3) facility. Error messages are produced if the _port_ argument does not specify a terminal device; if there is no utmp entry for the current process (System V only); and so on.
+Depending on how the program was configured, all diagnostics are written to the console device or reported via the *syslog*(3) facility. Error messages are produced if the _port_ argument does not specify a terminal device; if there is no utmp entry for the calling process (System V only); and so on.
 
 == AUTHORS