代码搜索:execve
找到约 549 项符合「execve」的源代码
代码结果 549
www.eeworm.com/read/301022/13870445
c sys_exec_table.c
///////////////////////////////////////////////////////////////////////////////
int sys_execve(void);
int sys_exit(void);
typedef int (*fn_ptr)(void);
fn_ptr sys_exec_table[] = { sys_execv
www.eeworm.com/read/187914/6338026
c forkdup.c
/* forkdup.c */
/* This program executes /bin/cat with stdin coming from f1, and stdout
going to f2. This is all done with fork, exec, and dup: */
#include
#include
main(
www.eeworm.com/read/292561/8348490
patch sash.patch
--- linux-2.2.13/arch/ppc/config.in.ORIG Sun Jan 9 11:57:17 2000
+++ linux-2.2.13/arch/ppc/config.in Sun Jan 9 13:11:36 2000
@@ -48,6 +48,10 @@
if [ "$CONFIG_8xx" = "y" ]; then
bool 'Math emul
www.eeworm.com/read/245586/12793071
c syscall.c
#include "hos.h"
void sys_ni_syscall(){}
void sys_exit(){
printk("in sys_exit\n");
do_exit();
}
//void sys_fork(){}
void sys_read(struct pt_regs regs){
//printk("in sys_read\n");
do_read(
www.eeworm.com/read/298657/3861971
c sysexecve.c
/* connector for execve */
#include
int
_DEFUN (execve, (name, argv, env),
char *name _AND
char **argv _AND
char **env)
{
#ifdef REENTRANT_SYSCALLS_PROVIDED
return _execve
www.eeworm.com/read/279968/4131181
c sysexecve.c
/* connector for execve */
#include
int
_DEFUN (execve, (name, argv, env),
char *name _AND
char **argv _AND
char **env)
{
#ifdef REENTRANT_SYSCALLS_PROVIDED
return _execve
www.eeworm.com/read/340665/3271024
c sysexecve.c
/* connector for execve */
#include
int
execve (name, argv, env)
char *name;
char **argv;
char **env;
{
#ifdef REENTRANT_SYSCALLS_PROVIDED
return _execve_r (_REENT, name,
www.eeworm.com/read/147331/5731981
h syscall.h
/* syscall.h - definitions of system calls for D10V.
*
* This file must contain only pre-processor directives, and no C code,
* because it's included by assembly language sources as well as C.
*/
www.eeworm.com/read/124347/6051442
h syscall.h
/* syscall.h - definitions of system calls for D10V.
*
* This file must contain only pre-processor directives, and no C code,
* because it's included by assembly language sources as well as C.
*/
www.eeworm.com/read/177570/5323146
pas libcexec.pas
{********************************************************************
* Workaround for the Integrated Debugger Libc.execve bug *
*