mirror of
https://git.proxmox.com/git/mirror_smartmontools-debian
synced 2025-08-12 10:07:43 +00:00

Downloaded source from https://sourceforge.net/projects/smartmontools/files/smartmontools/7.0/ and imported here to git. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
56 lines
1.2 KiB
C
56 lines
1.2 KiB
C
/*
|
|
* os_win32/popen.h
|
|
*
|
|
* Home page of code is: https://www.smartmontools.org
|
|
*
|
|
* Copyright (C) 2018 Christian Franke
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef POPEN_H
|
|
#define POPEN_H
|
|
|
|
#define POPEN_H_CVSID "$Id: popen.h 4818 2018-10-17 05:32:17Z chrfranke $"
|
|
|
|
#include <stdio.h>
|
|
|
|
// MinGW <stdio.h> defines these to _popen/_pclose
|
|
#undef popen
|
|
#undef pclose
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// popen(3) reimplementation for Windows
|
|
//
|
|
// The _popen() from MSVCRT is not useful as it always opens a new
|
|
// console window if parent process has none.
|
|
//
|
|
// Differences to popen(3):
|
|
// - Only modes "r[bt]" are supported
|
|
// - stdin and stderr from parent are not inherited to child process
|
|
// but redirected to null device
|
|
// - Only one child process can be run at a time
|
|
|
|
FILE * popen(const char * command, const char * mode);
|
|
|
|
int pclose(FILE * f);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
// wait(3) macros from <sys/wait.h>
|
|
#ifndef WIFEXITED
|
|
#define WIFEXITED(status) (((status) & 0xff) == 0x00)
|
|
#define WIFSIGNALED(status) (((status) & 0xff) != 0x00)
|
|
#define WIFSTOPPED(status) (0)
|
|
#define WEXITSTATUS(status) ((status) >> 8)
|
|
#define WTERMSIG(status) ((status) & 0xff)
|
|
#define WSTOPSIG(status) (0)
|
|
#endif // WIFEXITED
|
|
|
|
#endif // POPEN_H
|