ps: conditionally enable -T on non-DESKTOP build too

function                                             old     new   delta
ps_main                                              253     274     +21

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2009-09-21 23:58:43 +02:00
parent 69b1cef921
commit d75295c80b
2 changed files with 28 additions and 28 deletions

View File

@ -528,21 +528,22 @@ int ps_main(int argc UNUSED_PARAM, char **argv)
int ps_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int ps_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
{
procps_status_t *p = NULL;
procps_status_t *p;
int len;
IF_NOT_SELINUX(const) int use_selinux = 0;
IF_SELINUX(int i;)
int psscan_flags = PSSCAN_PID | PSSCAN_UIDGID
| PSSCAN_STATE | PSSCAN_VSZ | PSSCAN_COMM;
#if !ENABLE_FEATURE_PS_WIDE
enum { terminal_width = 79 };
#else
unsigned terminal_width;
int w_count = 0;
#endif
#if ENABLE_FEATURE_PS_WIDE || ENABLE_SELINUX
int opts;
# if ENABLE_FEATURE_PS_WIDE
int w_count = 0;
opt_complementary = "-:ww";
IF_SELINUX(i =) getopt32(argv, IF_SELINUX("Z") "w", &w_count);
opts = getopt32(argv, IF_SELINUX("Z")IF_FEATURE_SHOW_THREADS("T")"w", &w_count);
/* if w is given once, GNU ps sets the width to 132,
* if w is given more than once, it is "unlimited"
*/
@ -555,29 +556,28 @@ int ps_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
terminal_width = MAX_WIDTH;
}
# else /* only ENABLE_SELINUX */
i = getopt32(argv, "Z");
opts = getopt32(argv, "Z"IF_FEATURE_SHOW_THREADS("T"));
# endif
# if ENABLE_SELINUX
if ((i & 1) && is_selinux_enabled())
use_selinux = PSSCAN_CONTEXT;
if ((opts & 1) && is_selinux_enabled())
psscan_flags = PSSCAN_PID | PSSCAN_CONTEXT
| PSSCAN_STATE | PSSCAN_COMM;
# endif
# if ENABLE_FEATURE_SHOW_THREADS
if (opts & (1 << ENABLE_SELINUX))
psscan_flags |= PSSCAN_TASKS;
# endif
#endif /* ENABLE_FEATURE_PS_WIDE || ENABLE_SELINUX */
if (use_selinux)
if (psscan_flags & PSSCAN_CONTEXT)
puts(" PID CONTEXT STAT COMMAND");
else
puts(" PID USER VSZ STAT COMMAND");
while ((p = procps_scan(p, 0
| PSSCAN_PID
| PSSCAN_UIDGID
| PSSCAN_STATE
| PSSCAN_VSZ
| PSSCAN_COMM
| use_selinux
)) != NULL) {
p = NULL;
while ((p = procps_scan(p, psscan_flags)) != NULL) {
#if ENABLE_SELINUX
if (use_selinux) {
if (psscan_flags & PSSCAN_CONTEXT) {
len = printf("%5u %-32.32s %s ",
p->pid,
p->context ? p->context : "unknown",

View File

@ -895,7 +895,7 @@ int top_main(int argc UNUSED_PARAM, char **argv)
int lines_rem;
unsigned interval;
char *str_interval, *str_iterations;
IF_NOT_FEATURE_TOPMEM(const) unsigned scan_mask = TOP_MASK;
unsigned scan_mask = TOP_MASK;
#if ENABLE_FEATURE_USE_TERMIOS
struct termios new_settings;
struct pollfd pfd[1];