代码搜索:execve
找到约 549 项符合「execve」的源代码
代码结果 549
www.eeworm.com/read/298657/3862022
c execve.c
/* execve.c */
/* This and the other exec*.c files in this directory require
the target to provide the _execve syscall. */
#include
int
_DEFUN(execve, (path, argv, envp),
co
www.eeworm.com/read/283358/4079876
c execve.c
/* Copyright (C) 1999, 2000, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under th
www.eeworm.com/read/279968/4129014
s execve.s
.globl _execve
.globl execve
_execve:
execve:
movl $0x3b, %eax
lcall $7,$0
jb _cerror
www.eeworm.com/read/279968/4129053
c execve.c
#include
#include
#include
#include "sys/syscall.h"
int errno;
int __trap0 (int function, int p1, int p2, int p3);
#define TRAP0(f, p1, p2, p3) __trap0(f, (int)
www.eeworm.com/read/279968/4129088
c execve.c
#include
#include
#include
#include "sys/syscall.h"
int errno;
int __trap0 ();
#define TRAP0(f, p1, p2, p3) __trap0(f, (p1), (p2), (p3))
int
_execve (const cha
www.eeworm.com/read/279968/4130046
c execve.c
#include "config.h"
#include
#include
#include
int execve( char *name, char **argv, char **env)
{
errno = ENOSYS;
return -1;
}
www.eeworm.com/read/279968/4130087
s execve.s
! execve.S
! This function is invoked by the other exec*() fns.
!
! If sizeof(char *) == 64, we invoke a new Shade function until the real one
! is defined.
#include "sys/syscallasm.h"
TEXT_SECTION
www.eeworm.com/read/279968/4130170
c execve.c
/* execve stub for MMIXware.
Copyright (C) 2001 Hans-Peter Nilsson
Permission to use, copy, modify, and distribute this software is
freely granted, provided that the above copyright notice,
www.eeworm.com/read/279968/4131232
c execve.c
/* execve.c */
/* This and the other exec*.c files in this directory require
the target to provide the _execve syscall. */
#include
int
_DEFUN(execve, (path, argv, envp),
co
www.eeworm.com/read/439725/1804915
c execve.c
#define __LIBRARY__
#include
_syscall3(int,execve,const char *,file,char **,argv,char **,envp)