代码搜索:exec
找到约 10,000 项符合「exec」的源代码
代码结果 10,000
www.eeworm.com/read/206625/5005452
c gui_exec.c
/*
*********************************************************************************************************
* uC/GUI
* Universal
www.eeworm.com/read/205458/5023920
c,v exec.c,v
head 1.2;
branch ;
access ;
symbols ;
locks tytso:1.2; strict;
comment @ * @;
1.2
date 91.12.01.09.22.01; author tytso; state Exp;
branches ;
next 1.1;
1.1
date 91.11.21.
www.eeworm.com/read/204924/5027414
c gui_exec.c
/*
*********************************************************************************************************
* uC/GUI
* Univers
www.eeworm.com/read/200278/5070835
c exec1.c
#include "apue.h"
#include
char *env_init[] = { "USER=unknown", "PATH=/tmp", NULL };
int
main(void)
{
pid_t pid;
if ((pid = fork()) < 0) {
err_sys("fork error");
} else if (pid ==
www.eeworm.com/read/200278/5070845
c exec2.c
#include "apue.h"
#include
int
main(void)
{
pid_t pid;
if ((pid = fork()) < 0) {
err_sys("fork error");
} else if (pid == 0) { /* child */
if (execl("/home/sar/bin/testinterp",
www.eeworm.com/read/196926/5100279
sh exec_skyeye.sh
#/bin/sh
cd "$1"
skyeye_path="$2"
if test "x$OSTYPE" == "xmsys" || test "x$TERM" == "xcygwin"; then
SKYEYE="${skyeye_path}/skyeye.exe"
else
SKYEYE="${skyeye_path}/skyeye"
fi
test -e linux && "$SKY
www.eeworm.com/read/196550/5102011
sh exec_skyeye.sh
#/bin/bash
cd $1
skyeye_path=$2
test -e linux && ${skyeye_path}/skyeye -e linux -c skyeye.conf
test -e vmlinux && ${skyeye_path}/skyeye -e vmlinux -c skyeye.conf
test -e vmlinux.large && ${skyeye_pat
www.eeworm.com/read/195013/5117507
c exec32.c
/*
* Support for 32-bit Linux for S390 ELF binaries.
*
* Copyright (C) 2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
* Author(s): Gerhard Tonn (ton@de.ibm.com)
*
* Seperated from binfmt
www.eeworm.com/read/192523/5155065
c gui_exec.c
/*
*********************************************************************************************************
* uC/GUI
* Universal
www.eeworm.com/read/192230/5159610
c foll-exec.c
#include
#include
#include
#include
int global_i = 100;
#ifdef PROTOTYPES
int main (void)
#else
main ()
#endif
{
int local_j = global_i+1;
int loca