Go to the documentation of this file.00001
00007 #ifndef PLIST_H
00008 #define PLIST_H
00009
00010
00011 #include <sys/types.h>
00012
00013
00029 int plistAdd(pid_t pid, const char cmdLine[]);
00030
00051 int plistRemove(pid_t pid, char cmdLineBuffer[], size_t bufferSize);
00052
00065 void plistIterate(int (*callback)(pid_t, const char *));
00066
00067
00068 #endif