代码搜索:execve
找到约 549 项符合「execve」的源代码
代码结果 549
www.eeworm.com/read/367182/2854308
c execve.c
/* Copyright (C) 1991, 92, 93, 94, 95, 97 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
www.eeworm.com/read/358128/3000308
al execve.al
# NOTE: Derived from ../../lib/POSIX.pm.
# Changes made here will be lost when autosplit is run again.
# See AutoSplit.pm.
package POSIX;
#line 669 "../../lib/POSIX.pm (autosplit into ../../lib/auto/
www.eeworm.com/read/351171/3110519
c execve.c
/*
* linux/lib/execve.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include // Linux 标准头文件。定义了各种符号常数和类型,并申明了各种函数。
// 如定义了__LIBRARY__,则还包括系统调用号和内嵌汇编_syscall0()等。
//// 加载并执行子进程(其它程
www.eeworm.com/read/350504/3124755
c execve.c
/*
* execve.c - Illustrate execve
*/
#include
#include
#include
int main(void)
{
char *argv[] = {"/bin/ls", NULL};
if(execve("/bin/ls", argv, NULL) == -
www.eeworm.com/read/350504/3124903
c execve.c
/*
* execve.c - Illustrate execve
*/
#include
#include
#include
int main(void)
{
char *argv[] = {"/bin/ls", NULL};
if(execve("/bin/ls", argv, NULL) == -
www.eeworm.com/read/260597/4330753
asm execve.asm
title execve -- stub to disable C execs and spawns
;--------------------------------------------------------------------------
;
; Microsoft C Compiler Runtime for MS-DOS
;
; (C)Copyright Micr
www.eeworm.com/read/252366/4408308
s execve.s
.sect .text
.extern __execve
.define _execve
.align 2
_execve:
jmp __execve
www.eeworm.com/read/473341/6851350
c execve.c
/*
* linux/lib/execve.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall3(int,execve,const char *,file,char **,argv,char **,envp)
www.eeworm.com/read/174274/9598636
c execve.c
#define __LIBRARY__
#include
_syscall3(int,execve,const char *,file,char **,argv,char **,envp)