execr.c

来自「cygwin, 著名的在win32下模拟unix操作系统的东东」· C语言 代码 · 共 146 行

C
146
字号
/* Reentrant versions of execution system calls.  These   implementations just call the usual system calls.  */#include <reent.h>#include <unistd.h>#include <sys/wait.h>#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 errnoextern int errno;/*FUNCTION	<<_execve_r>>---Reentrant version of execve	INDEX	_execve_rANSI_SYNOPSIS	#include <reent.h>	int _execve_r(struct _reent *<[ptr]>, char *<[name]>,                      char **<[argv]>, char **<[env]>);TRAD_SYNOPSIS	#include <reent.h>	int _execve_r(<[ptr]>, <[name]>, <[argv]>, <[env]>)	struct _reent *<[ptr]>;        char *<[name]>;        char **<[argv]>;        char **<[env]>;DESCRIPTION	This is a reentrant version of <<execve>>.  It	takes a pointer to the global data block, which holds	<<errno>>.*/int_execve_r (ptr, name, argv, env)     struct _reent *ptr;     char *name;     char **argv;     char **env;{  int ret;  errno = 0;  if ((ret = _execve (name, argv, env)) == -1 && errno != 0)    ptr->_errno = errno;  return ret;}/*FUNCTION	<<_fork_r>>---Reentrant version of fork	INDEX	_fork_rANSI_SYNOPSIS	#include <reent.h>	int _fork_r(struct _reent *<[ptr]>);TRAD_SYNOPSIS	#include <reent.h>	int _fork_r(<[ptr]>)	struct _reent *<[ptr]>;DESCRIPTION	This is a reentrant version of <<fork>>.  It	takes a pointer to the global data block, which holds	<<errno>>.*/#ifndef NO_FORKint_fork_r (ptr)     struct _reent *ptr;{  int ret;  errno = 0;  if ((ret = _fork ()) == -1 && errno != 0)    ptr->_errno = errno;  return ret;}#endif/*FUNCTION	<<_wait_r>>---Reentrant version of wait	INDEX	_wait_rANSI_SYNOPSIS	#include <reent.h>	int _wait_r(struct _reent *<[ptr]>, int *<[status]>);TRAD_SYNOPSIS	#include <reent.h>	int _wait_r(<[ptr]>, <[status]>)	struct _reent *<[ptr]>;	int *<[status]>;DESCRIPTION	This is a reentrant version of <<wait>>.  It	takes a pointer to the global data block, which holds	<<errno>>.*/int_wait_r (ptr, status)     struct _reent *ptr;     int *status;{  int ret;  errno = 0;  if ((ret = _wait (status)) == -1 && errno != 0)    ptr->_errno = errno;  return ret;}#endif /* ! defined (REENTRANT_SYSCALLS_PROVIDED) */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?