aboutsummaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
Diffstat (limited to 'procps')
-rw-r--r--procps/ps.c22
1 files changed, 18 insertions, 4 deletions
diff --git a/procps/ps.c b/procps/ps.c
index c3b200866..a3220a926 100644
--- a/procps/ps.c
+++ b/procps/ps.c
@@ -232,7 +232,6 @@ static void func_tty(char *buf, int size, const procps_status_t *ps)
232 snprintf(buf, size+1, "%u,%u", ps->tty_major, ps->tty_minor); 232 snprintf(buf, size+1, "%u,%u", ps->tty_major, ps->tty_minor);
233} 233}
234 234
235
236#if ENABLE_FEATURE_PS_ADDITIONAL_COLUMNS 235#if ENABLE_FEATURE_PS_ADDITIONAL_COLUMNS
237 236
238static void func_rgroup(char *buf, int size, const procps_status_t *ps) 237static void func_rgroup(char *buf, int size, const procps_status_t *ps)
@@ -250,9 +249,10 @@ static void func_nice(char *buf, int size, const procps_status_t *ps)
250 sprintf(buf, "%*d", size, ps->niceness); 249 sprintf(buf, "%*d", size, ps->niceness);
251} 250}
252 251
253#endif /* FEATURE_PS_ADDITIONAL_COLUMNS */ 252#endif
254 253
255#if ENABLE_FEATURE_PS_TIME 254#if ENABLE_FEATURE_PS_TIME
255
256static void func_etime(char *buf, int size, const procps_status_t *ps) 256static void func_etime(char *buf, int size, const procps_status_t *ps)
257{ 257{
258 /* elapsed time [[dd-]hh:]mm:ss; here only mm:ss */ 258 /* elapsed time [[dd-]hh:]mm:ss; here only mm:ss */
@@ -278,6 +278,7 @@ static void func_time(char *buf, int size, const procps_status_t *ps)
278 mm /= 60; 278 mm /= 60;
279 snprintf(buf, size+1, "%3lu:%02u", mm, ss); 279 snprintf(buf, size+1, "%3lu:%02u", mm, ss);
280} 280}
281
281#endif 282#endif
282 283
283#if ENABLE_SELINUX 284#if ENABLE_SELINUX
@@ -337,11 +338,24 @@ static ps_out_t* new_out_t(void)
337static const ps_out_t* find_out_spec(const char *name) 338static const ps_out_t* find_out_spec(const char *name)
338{ 339{
339 unsigned i; 340 unsigned i;
341#if ENABLE_DESKTOP
342 char buf[ARRAY_SIZE(out_spec)*7 + 1];
343 char *p = buf;
344#endif
345
340 for (i = 0; i < ARRAY_SIZE(out_spec); i++) { 346 for (i = 0; i < ARRAY_SIZE(out_spec); i++) {
341 if (!strncmp(name, out_spec[i].name6, 6)) 347 if (strncmp(name, out_spec[i].name6, 6) == 0)
342 return &out_spec[i]; 348 return &out_spec[i];
349#if ENABLE_DESKTOP
350 p += sprintf(p, "%.6s,", out_spec[i].name6);
351#endif
343 } 352 }
344 bb_error_msg_and_die("bad -o argument '%s'", name); 353#if ENABLE_DESKTOP
354 p[-1] = '\0';
355 bb_error_msg_and_die("bad -o argument '%s', supported arguments: %s", name, buf);
356#else
357 bb_error_msg_and_die("bad -o argument '%s'");
358#endif
345} 359}
346 360
347static void parse_o(char* opt) 361static void parse_o(char* opt)