Diff for /libelwix/inc/elwix/apio.h between versions 1.2 and 1.5

version 1.2, 2013/12/15 22:54:41 version 1.5, 2020/06/19 13:06:17
Line 12  terms: Line 12  terms:
 All of the documentation and software included in the ELWIX and AITNET  All of the documentation and software included in the ELWIX and AITNET
 Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>  Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
   
Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013Copyright 2004 - 2020
         by Michael Pounov <misho@elwix.org>.  All rights reserved.          by Michael Pounov <misho@elwix.org>.  All rights reserved.
   
 Redistribution and use in source and binary forms, with or without  Redistribution and use in source and binary forms, with or without
Line 75  extern pio_pid_t pio_pidlist; Line 75  extern pio_pid_t pio_pidlist;
 FILE *e_popen(const char *command, const char *type, pid_t *ppid);  FILE *e_popen(const char *command, const char *type, pid_t *ppid);
 #else  #else
 int e_popen(const char *command, const char *type, pid_t *ppid);  int e_popen(const char *command, const char *type, pid_t *ppid);
   #endif
   /*
    * e_popen2() - ELWIX replacement of standard popen with post close of chosen handles
    *
    * @command = command
    * @type = type
    * @ppid = return pid of child program
    * @fds = file descriptor array for close when fork
    * @fdslen = fds number of descriptors
    * return: NULL error or !=NULL open program
    */
   #ifdef POPEN_STREAM
   FILE *e_popen2(const char *command, const char *type, pid_t *ppid, int *fds, size_t fdslen);
   #else
   int e_popen2(const char *command, const char *type, pid_t *ppid, int *fds, size_t fdslen);
 #endif  #endif
 /*  /*
  * e_pclose() - ELWIX replacement of standard pclose   * e_pclose() - ELWIX replacement of standard pclose

Removed from v.1.2  
changed lines
  Added in v.1.5


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