proc.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * ngIRCd -- The Next Generation IRC Daemon
  3. * Copyright (c)2001-2011 Alexander Barton (alex@barton.de) and Contributors.
  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. #ifndef __proc_h__
  12. #define __proc_h__
  13. /**
  14. * @file
  15. * Process management (header)
  16. */
  17. /** Process status. This struct must not be accessed directly! */
  18. typedef struct _Proc_Stat {
  19. pid_t pid; /**< PID of the child process or 0 if none */
  20. int pipe_fd; /**< Pipe file descriptor or -1 if none */
  21. } PROC_STAT;
  22. /** Return true if sub-process is still running */
  23. #define Proc_InProgress(x) ((x)->pid != 0)
  24. /** Return file descriptor of pipe to sub-process (or -1 if none open) */
  25. #define Proc_GetPipeFd(x) ((x)->pipe_fd)
  26. GLOBAL void Proc_InitStruct PARAMS((PROC_STAT *proc));
  27. GLOBAL pid_t Proc_Fork PARAMS((PROC_STAT *proc, int *pipefds,
  28. void (*cbfunc)(int, short), int timeout));
  29. GLOBAL void Proc_GenericSignalHandler PARAMS((int Signal));
  30. GLOBAL size_t Proc_Read PARAMS((PROC_STAT *proc, void *buffer, size_t buflen));
  31. GLOBAL void Proc_Close PARAMS((PROC_STAT *proc));
  32. #endif
  33. /* -eof- */