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

version 1.5, 2020/06/19 13:06:17 version 1.6.40.1, 2024/12/05 12:33:49
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 - 2020Copyright 2004 - 2024
         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 62  typedef SLIST_HEAD(, tagPIOPID) pio_pid_t; Line 62  typedef SLIST_HEAD(, tagPIOPID) pio_pid_t;
   
 extern pio_pid_t pio_pidlist;  extern pio_pid_t pio_pidlist;
   
   #ifdef __cplusplus
   extern "C" {
   #endif
   
 /*  /*
  * e_popen() - ELWIX replacement of standard popen   * e_popen() - ELWIX replacement of standard popen
Line 69  extern pio_pid_t pio_pidlist; Line 72  extern pio_pid_t pio_pidlist;
  * @command = command   * @command = command
  * @type = type   * @type = type
  * @ppid = return pid of child program   * @ppid = return pid of child program
    *      If value of *ppid is -1 when invoke routine then child will be session leader
  * return: NULL error or !=NULL open program   * return: NULL error or !=NULL open program
  */   */
 #ifdef POPEN_STREAM  #ifdef POPEN_STREAM
Line 82  int e_popen(const char *command, const char *type, pid Line 86  int e_popen(const char *command, const char *type, pid
  * @command = command   * @command = command
  * @type = type   * @type = type
  * @ppid = return pid of child program   * @ppid = return pid of child program
    *      If value of *ppid is -1 when invoke routine then child will be session leader
  * @fds = file descriptor array for close when fork   * @fds = file descriptor array for close when fork
  * @fdslen = fds number of descriptors   * @fdslen = fds number of descriptors
  * return: NULL error or !=NULL open program   * return: NULL error or !=NULL open program
Line 123  struct tagPIOPID *pio_pgetpid(int iop); Line 128  struct tagPIOPID *pio_pgetpid(int iop);
  */   */
 int pio_pchkpid(array_t ** __restrict pids);  int pio_pchkpid(array_t ** __restrict pids);
   
   #ifdef __cplusplus
   }
   #endif
   
 #endif  #endif

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


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