00001 #ifndef PLIST_H
00002 #define PLIST_H
00003
00004 #include <sys/types.h>
00005
00027 int insertElement(pid_t pid, const char *commandLine);
00028
00048 int removeElement(pid_t pid, char *commandLineBuffer, size_t bufferSize);
00049
00057 void rewindPList();
00058
00075 int nextElement(const char **cmdLine, pid_t *pid);
00076
00077
00078 #endif
00079