[git commit] ps: implement -o sid

Denys Vlasenko vda.linux at googlemail.com
Sat Jul 29 00:20:17 UTC 2017


commit: https://git.busybox.net/busybox/commit/?id=5d725fd627e23b4be5d5a8b843a5a9fc9bc9e410
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

function                                             old     new   delta
func_sid                                               -      29     +29
out_spec                                             320     340     +20
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 1/0 up/down: 49/0)               Total: 49 bytes

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 procps/ps.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/procps/ps.c b/procps/ps.c
index d4d787d..6348df5 100644
--- a/procps/ps.c
+++ b/procps/ps.c
@@ -340,6 +340,11 @@ static void func_pgid(char *buf, int size, const procps_status_t *ps)
 	sprintf(buf, "%*u", size, ps->pgid);
 }
 
+static void func_sid(char *buf, int size, const procps_status_t *ps)
+{
+	sprintf(buf, "%*u", size, ps->sid);
+}
+
 static void put_lu(char *buf, int size, unsigned long u)
 {
 	char buf4[5];
@@ -458,6 +463,7 @@ static const ps_out_t out_spec[] = {
 	{ 6                  , "tty"   ,"TT"     ,func_tty   ,PSSCAN_TTY     },
 	{ 4                  , "vsz"   ,"VSZ"    ,func_vsz   ,PSSCAN_VSZ     },
 /* Not mandated, but useful: */
+	{ 5                  , "sid"   ,"SID"    ,func_sid   ,PSSCAN_SID     },
 	{ 4                  , "stat"  ,"STAT"   ,func_state ,PSSCAN_STATE   },
 	{ 4                  , "rss"   ,"RSS"    ,func_rss   ,PSSCAN_RSS     },
 #if ENABLE_SELINUX


More information about the busybox-cvs mailing list