--- libelwix/inc/elwix/apio.h 2015/06/25 17:53:49 1.4 +++ libelwix/inc/elwix/apio.h 2020/06/19 13:06:17 1.5 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: apio.h,v 1.4 2015/06/25 17:53:49 misho Exp $ +* $Id: apio.h,v 1.5 2020/06/19 13:06:17 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -12,7 +12,7 @@ terms: All of the documentation and software included in the ELWIX and AITNET Releases is copyrighted by ELWIX - Sofia/Bulgaria -Copyright 2004 - 2015 +Copyright 2004 - 2020 by Michael Pounov . All rights reserved. Redistribution and use in source and binary forms, with or without @@ -75,6 +75,21 @@ extern pio_pid_t pio_pidlist; FILE *e_popen(const char *command, const char *type, pid_t *ppid); #else 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 /* * e_pclose() - ELWIX replacement of standard pclose