diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-06-28 04:35:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-28 04:35:55 (GMT) |
commit | 7d1fdb2d277530eec6d1c8ff937634e7028892aa (patch) | |
tree | d5b832cbc566c7076b6926ce5e549bfe359fae1b /src | |
parent | badc6098f726d644cbe6e7bcb27f58e5ba6d5d34 (diff) | |
download | hdf5-7d1fdb2d277530eec6d1c8ff937634e7028892aa.zip hdf5-7d1fdb2d277530eec6d1c8ff937634e7028892aa.tar.gz hdf5-7d1fdb2d277530eec6d1c8ff937634e7028892aa.tar.bz2 |
Remove HD from fork/exec*/wait* (#3190)
These are not C99 but are hidden behind ifdefs and are highly
unlikely to ever have non-POSIX equivalents.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5private.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/H5private.h b/src/H5private.h index bef8da9..ec0604b 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -671,15 +671,6 @@ typedef off_t h5_stat_size_t; #ifndef HDdifftime #define HDdifftime(X, Y) difftime(X, Y) #endif -#ifndef HDexecv -#define HDexecv(S, AV) execv(S, AV) -#endif -#ifndef HDexecve -#define HDexecve(S, AV, E) execve(S, AV, E) -#endif -#ifndef HDexecvp -#define HDexecvp(S, AV) execvp(S, AV) -#endif #ifndef HDexit #define HDexit(N) exit(N) #endif @@ -754,9 +745,6 @@ H5_DLL H5_ATTR_CONST int Nflock(int fd, int operation); #ifndef HDfopen #define HDfopen(S, M) fopen(S, M) #endif -#ifndef HDfork -#define HDfork() fork() -#endif #ifndef HDfprintf #define HDfprintf fprintf #endif @@ -1230,12 +1218,6 @@ H5_DLL int HDvasprintf(char **bufp, const char *fmt, va_list _ap); #ifndef HDvsnprintf #define HDvsnprintf(S, N, FMT, A) vsnprintf(S, N, FMT, A) #endif -#ifndef HDwait -#define HDwait(W) wait(W) -#endif -#ifndef HDwaitpid -#define HDwaitpid(P, W, O) waitpid(P, W, O) -#endif #ifndef HDwrite #define HDwrite(F, M, Z) write(F, M, Z) #endif |