Diff for /libaitio/inc/aitio.h between versions 1.38.10.2 and 1.38.10.3

version 1.38.10.2, 2013/12/05 12:43:03 version 1.38.10.3, 2013/12/05 14:12:25
Line 133  const char *io_GetError(); Line 133  const char *io_GetError();
   
   
 /*  /*
    * io_popen() - ELWIX replacement of standard popen
    *
    * @command = command
    * @type = type
    * @ppid = return pid of child program
    * return: NULL error or !=NULL open program
    */
   FILE *io_popen(const char *command, const char *type, pid_t *ppid);
   /*
    * io_pclose() - ELWIX replacement of standard pclose
    *
    * @iop = popen handle
    * return: -1 error or !=-1 pid status
    */
   int io_pclose(FILE *iop);
   
   
   /*
  * io_progInit() - Init program pool   * io_progInit() - Init program pool
  *   *
  * @progName = program name for execution   * @progName = program name for execution

Removed from v.1.38.10.2  
changed lines
  Added in v.1.38.10.3


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