00001 #ifndef PLIST_H 00002 #define PLIST_H 00003 00004 #include <sys/types.h> 00005 00029 int insertElement(pid_t pid, const char *commandLine); 00030 00050 int removeElement(pid_t pid, char *commandLineBuffer, size_t bufferSize); 00051 00063 void walkList( int (*callback) (pid_t, const char *) ); 00064 00065 #endif 00066