summaryrefslogtreecommitdiffstats
path: root/sbin/fsck_ffs/pass3.c
diff options
context:
space:
mode:
authorscottl <scottl@FreeBSD.org>2004-02-28 07:50:42 +0000
committerscottl <scottl@FreeBSD.org>2004-02-28 07:50:42 +0000
commitd9a0004b62fe76e69cb6f4ac21d673a03e1b97fe (patch)
tree54f005956185a8047740cf2432ee3919ed1ebc7c /sbin/fsck_ffs/pass3.c
parentf9390aef0d6f1aa5e2e8a5caaa474a78f16eda0f (diff)
downloadFreeBSD-src-d9a0004b62fe76e69cb6f4ac21d673a03e1b97fe.zip
FreeBSD-src-d9a0004b62fe76e69cb6f4ac21d673a03e1b97fe.tar.gz
In the case of a background fsck, periodically update the process title
with a progress update.
Diffstat (limited to 'sbin/fsck_ffs/pass3.c')
-rw-r--r--sbin/fsck_ffs/pass3.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sbin/fsck_ffs/pass3.c b/sbin/fsck_ffs/pass3.c
index 0ae3267..925d880 100644
--- a/sbin/fsck_ffs/pass3.c
+++ b/sbin/fsck_ffs/pass3.c
@@ -65,6 +65,11 @@ pass3(void)
(int)((inplast - inpindex - 1) * 100 / inplast));
got_siginfo = 0;
}
+ if (got_sigalarm) {
+ setproctitle("%s p3 %d%%", cdevname,
+ (int)((inplast - inpindex - 1) * 100 / inplast));
+ got_sigalarm = 0;
+ }
inp = inpsort[inpindex];
state = inoinfo(inp->i_number)->ino_state;
if (inp->i_number == ROOTINO ||
OpenPOWER on IntegriCloud