summaryrefslogtreecommitdiffstats
path: root/contrib/top
diff options
context:
space:
mode:
authorrafan <rafan@FreeBSD.org>2007-05-04 15:42:58 +0000
committerrafan <rafan@FreeBSD.org>2007-05-04 15:42:58 +0000
commit747bdd6a1876735ec66675538c6451b2ccf4294b (patch)
treeb92edb27dc4963384f310dcd2f732ff97787669b /contrib/top
parent46dad863939cbc62659d9c18182ee67c9b49d531 (diff)
downloadFreeBSD-src-747bdd6a1876735ec66675538c6451b2ccf4294b.zip
FreeBSD-src-747bdd6a1876735ec66675538c6451b2ccf4294b.tar.gz
- s/jail id/jail ID/, acronyms should be in uppercase in general. Also,
it is written this way in jail(8). Suggested by: brueffer Approved by: delphij (mentor, implicit)
Diffstat (limited to 'contrib/top')
-rw-r--r--contrib/top/commands.c2
-rw-r--r--contrib/top/machine.h2
-rw-r--r--contrib/top/top.X4
-rw-r--r--contrib/top/top.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/contrib/top/commands.c b/contrib/top/commands.c
index 8104f51..83f966d 100644
--- a/contrib/top/commands.c
+++ b/contrib/top/commands.c
@@ -73,7 +73,7 @@ d - change number of displays to show\n\
e - list errors generated by last \"kill\" or \"renice\" command\n\
H - toggle the displaying of threads\n\
i or I - toggle the displaying of idle processes\n\
-j - toggle the displaying of jail id\n\
+j - toggle the displaying of jail ID\n\
k - kill processes; send a signal to a list of processes\n\
m - toggle the display between 'cpu' and 'io' modes\n\
n or # - change number of processes to display\n", stdout);
diff --git a/contrib/top/machine.h b/contrib/top/machine.h
index 822c9d6..10c69ca 100644
--- a/contrib/top/machine.h
+++ b/contrib/top/machine.h
@@ -62,7 +62,7 @@ struct process_select
int thread; /* show threads */
int uid; /* only this uid (unless uid == -1) */
int wcpu; /* show weighted cpu */
- int jail; /* show jail id */
+ int jail; /* show jail ID */
char *command; /* only this command (unless == NULL) */
};
diff --git a/contrib/top/top.X b/contrib/top/top.X
index eda664c..acddde8 100644
--- a/contrib/top/top.X
+++ b/contrib/top/top.X
@@ -105,7 +105,7 @@ By default, top displays both active and idle processes.
.B \-j
Display the
.IR jail (8)
-id.
+ID.
.TP
.B \-t
Do not display the
@@ -294,7 +294,7 @@ Toggle the display of idle processes.
.B j
Toggle the display of
.IR jail (8)
-id.
+ID.
.TP
.B t
Toggle the display of the
diff --git a/contrib/top/top.c b/contrib/top/top.c
index 8011b64..eac2ecc 100644
--- a/contrib/top/top.c
+++ b/contrib/top/top.c
@@ -1064,7 +1064,7 @@ restart:
case CMD_jidtog:
ps.jail = !ps.jail;
new_message(MT_standout | MT_delayed,
- " %sisplaying jail id.",
+ " %sisplaying jail ID.",
ps.jail ? "D" : "Not d");
header_text = format_header(uname_field);
reset_display();
OpenPOWER on IntegriCloud