/* Reentrant versions of execution system calls. These implementations just call the usual system calls. */ #include #include #include #include <_syslist.h> /* Some targets provides their own versions of these functions. Those targets should define REENTRANT_SYSCALLS_PROVIDED in TARGET_CFLAGS. */ #ifdef _REENT_ONLY #ifndef REENTRANT_SYSCALLS_PROVIDED #define REENTRANT_SYSCALLS_PROVIDED #endif #endif /* If NO_EXEC is defined, we don't need these functions. */ #if defined (REENTRANT_SYSCALLS_PROVIDED) || defined (NO_EXEC) int _dummy_exec_syscalls = 1; #else /* We use the errno variable used by the system dependent layer. */ #undef errno extern int errno; /* FUNCTION <<_execve_r>>---Reentrant version of execve INDEX _execve_r SYNOPSIS #include int _execve_r(struct _reent *<[ptr]>, const char *<[name]>, char *const <[argv]>[], char *const <[env]>[]); DESCRIPTION This is a reentrant version of <>. It takes a pointer to the global data block, which holds <>. */ int _execve_r (struct _reent *ptr, const char *name, char *const argv[], char *const env[]) { int ret; errno = 0; if ((ret = _execve (name, argv, env)) == -1 && errno != 0) _REENT_ERRNO(ptr) = errno; return ret; } /* NEWPAGE FUNCTION <<_fork_r>>---Reentrant version of fork INDEX _fork_r SYNOPSIS #include int _fork_r(struct _reent *<[ptr]>); DESCRIPTION This is a reentrant version of <>. It takes a pointer to the global data block, which holds <>. */ #ifndef NO_FORK int _fork_r (struct _reent *ptr) { int ret; errno = 0; if ((ret = _fork ()) == -1 && errno != 0) _REENT_ERRNO(ptr) = errno; return ret; } #endif /* NEWPAGE FUNCTION <<_wait_r>>---Reentrant version of wait INDEX _wait_r SYNOPSIS #include int _wait_r(struct _reent *<[ptr]>, int *<[status]>); DESCRIPTION This is a reentrant version of <>. It takes a pointer to the global data block, which holds <>. */ int _wait_r (struct _reent *ptr, int *status) { int ret; errno = 0; if ((ret = _wait (status)) == -1 && errno != 0) _REENT_ERRNO(ptr) = errno; return ret; } #endif /* ! defined (REENTRANT_SYSCALLS_PROVIDED) */