udhcpc: code shrink
[oweals/busybox.git] / procps / pidof.c
index 6d265667f711231c7f5a6052385d4071b409e794..98d7949f825f56184f833025722a5e1f65edbd8d 100644 (file)
@@ -6,6 +6,36 @@
  *
  * Licensed under GPLv2, see file LICENSE in this source tree.
  */
+//config:config PIDOF
+//config:      bool "pidof (6.6 kb)"
+//config:      default y
+//config:      help
+//config:      Pidof finds the process id's (pids) of the named programs. It prints
+//config:      those id's on the standard output.
+//config:
+//config:config FEATURE_PIDOF_SINGLE
+//config:      bool "Enable single shot (-s)"
+//config:      default y
+//config:      depends on PIDOF
+//config:      help
+//config:      Support '-s' for returning only the first pid found.
+//config:
+//config:config FEATURE_PIDOF_OMIT
+//config:      bool "Enable omitting pids (-o PID)"
+//config:      default y
+//config:      depends on PIDOF
+//config:      help
+//config:      Support '-o PID' for omitting the given pid(s) in output.
+//config:      The special pid %PPID can be used to name the parent process
+//config:      of the pidof, in other words the calling shell or shell script.
+
+//applet:IF_PIDOF(APPLET(pidof, BB_DIR_BIN, BB_SUID_DROP))
+/* can't be noexec: can find _itself_ under wrong name, since after fork only,
+ * /proc/PID/cmdline and comm are wrong! Can fix comm (prctl(PR_SET_NAME)),
+ * but cmdline?
+ */
+
+//kbuild:lib-$(CONFIG_PIDOF) += pidof.o
 
 //usage:#if (ENABLE_FEATURE_PIDOF_SINGLE || ENABLE_FEATURE_PIDOF_OMIT)
 //usage:#define pidof_trivial_usage