Deleted Added
full compact
top.c (168863) top.c (169257)
1char *copyright =
2 "Copyright (c) 1984 through 1996, William LeFebvre";
3
4/*
5 * Top users/processes display for Unix
6 * Version 3
7 *
8 * This program may be freely redistributed,
9 * but this entire comment MUST remain intact.
10 *
11 * Copyright (c) 1984, 1989, William LeFebvre, Rice University
12 * Copyright (c) 1989 - 1994, William LeFebvre, Northwestern University
13 * Copyright (c) 1994, 1995, William LeFebvre, Argonne National Laboratory
14 * Copyright (c) 1996, William LeFebvre, Group sys Consulting
15 *
1char *copyright =
2 "Copyright (c) 1984 through 1996, William LeFebvre";
3
4/*
5 * Top users/processes display for Unix
6 * Version 3
7 *
8 * This program may be freely redistributed,
9 * but this entire comment MUST remain intact.
10 *
11 * Copyright (c) 1984, 1989, William LeFebvre, Rice University
12 * Copyright (c) 1989 - 1994, William LeFebvre, Northwestern University
13 * Copyright (c) 1994, 1995, William LeFebvre, Argonne National Laboratory
14 * Copyright (c) 1996, William LeFebvre, Group sys Consulting
15 *
16 * $FreeBSD: head/contrib/top/top.c 168863 2007-04-19 14:24:54Z rafan $
16 * $FreeBSD: head/contrib/top/top.c 169257 2007-05-04 15:42:58Z rafan $
17 */
18
19/*
20 * See the file "Changes" for information on version-to-version changes.
21 */
22
23/*
24 * This file contains "main" and other high-level routines.

--- 1034 unchanged lines hidden (view full) ---

1059 {
1060 clear_message();
1061 }
1062 break;
1063#endif
1064 case CMD_jidtog:
1065 ps.jail = !ps.jail;
1066 new_message(MT_standout | MT_delayed,
17 */
18
19/*
20 * See the file "Changes" for information on version-to-version changes.
21 */
22
23/*
24 * This file contains "main" and other high-level routines.

--- 1034 unchanged lines hidden (view full) ---

1059 {
1060 clear_message();
1061 }
1062 break;
1063#endif
1064 case CMD_jidtog:
1065 ps.jail = !ps.jail;
1066 new_message(MT_standout | MT_delayed,
1067 " %sisplaying jail id.",
1067 " %sisplaying jail ID.",
1068 ps.jail ? "D" : "Not d");
1069 header_text = format_header(uname_field);
1070 reset_display();
1071 putchar('\r');
1072 break;
1073
1074 default:
1075 new_message(MT_standout, " BAD CASE IN SWITCH!");

--- 81 unchanged lines hidden ---
1068 ps.jail ? "D" : "Not d");
1069 header_text = format_header(uname_field);
1070 reset_display();
1071 putchar('\r');
1072 break;
1073
1074 default:
1075 new_message(MT_standout, " BAD CASE IN SWITCH!");

--- 81 unchanged lines hidden ---