proc.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * ngIRCd -- The Next Generation IRC Daemon
  3. * Copyright (c)2001-2010 Alexander Barton (alex@barton.de)
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. * Please read the file COPYING, README and AUTHORS for more information.
  10. *
  11. * Process management (header)
  12. */
  13. #ifndef __proc_h__
  14. #define __proc_h__
  15. /* This struct must not be accessed directly! */
  16. typedef struct _Proc_Stat {
  17. pid_t pid; /* PID of the child process or 0 if none */
  18. int pipe_fd; /* Pipe file descriptor or -1 if none */
  19. } PROC_STAT;
  20. #define Proc_InProgress(x) ((x)->pid != 0)
  21. #define Proc_GetPipeFd(x) ((x)->pipe_fd)
  22. GLOBAL void Proc_InitStruct PARAMS((PROC_STAT *proc));
  23. GLOBAL pid_t Proc_Fork PARAMS((PROC_STAT *proc, int *pipefds,
  24. void (*cbfunc)(int, short), int timeout));
  25. GLOBAL void Proc_GenericSignalHandler PARAMS((int Signal));
  26. GLOBAL size_t Proc_Read PARAMS((PROC_STAT *proc, void *buffer, size_t buflen));
  27. #endif
  28. /* -eof- */