Diff for /libelwix/inc/elwix/apio.h between versions 1.1.2.3 and 1.1.2.5

version 1.1.2.3, 2013/12/05 14:57:35 version 1.1.2.5, 2013/12/05 15:38:14
Line 77  FILE *e_popen(const char *command, const char *type, p Line 77  FILE *e_popen(const char *command, const char *type, p
  */   */
 int e_pclose(FILE *iop);  int e_pclose(FILE *iop);
   
   /*
    * pio_pgetpid() - Get tagPIOPID structure from file handle
    *
    * @iop = popen handle
    * return: NULL error or !=NULL tagPIOPID structure
    */
   struct tagPIOPID *pio_pgetpid(FILE * __restrict iop);
   /*
    * pio_pchkpid() - Check exit status of child programs
    *
    * @pids = return tagPIOPID structures of exited programs, 
    *              if !=NULL must call array_Destroy()
    * return: -1 error or >-1 exited programs
    */
   int pio_pchkpid(array_t ** __restrict pids);
   
   
 #endif  #endif

Removed from v.1.1.2.3  
changed lines
  Added in v.1.1.2.5


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>