/*
 * Get xalarm pids:
 *     list user processes | filter for xalarm | pid #s only | filter us out
 *
 * Where "us" is where the xalarm pid# running this will go.
 *
 * Normally we use ps(1), grep(1), colrm(1) and grep(1) again, respectively.
 * Typically:
 *    "/bin/ps -cx | /bin/grep -w xalarm | /usr/ucb/colrm 7 | /bin/grep -v %d"
 */

#define	GETXALARMPIDS	\
    "/bin/ps -cx | /bin/grep -w xalarm | /usr/ucb/colrm 7 | /bin/grep -v %d"

/*
 * Full path of kill(1), typically "/bin/kill".
 */

#define	KILLPATH	"/bin/kill"

