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
00059 void rewindPList();
00060
00075 int nextElement(const char **cmdLine, pid_t *pid);
00076
00077
00078 #endif
00079