代码搜索结果
找到约 10,000 项符合
Control System 的代码
system.c
#include
system(s)
char *s;
{
int status, pid, w;
register int (*istat)(), (*qstat)();
if ((pid = fork()) == 0) {
execl("/bin/sh", "sh", "-c", s, 0);
_exit(127);
}
istat = signal
system.c
system(str)
char *str;
{
int status;
if(fork() == 0)
execl("/bin/sh", "sh", "-c", str, 0);
wait(&status);
}
system.c
/*
(c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/*
Module: SYSTEM
Author: Ceriel J
system.c
/*
(c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/*
Module: SYSTEM
Author: Ceriel J
system.c
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Header: /cvsup/minix/src/lib/ans
system.3
.\" @(#)system.3 6.1 (Berkeley) 5/15/85
.\"
.TH SYSTEM 3 "May 15, 1985"
.AT 3
.SH NAME
system \- issue a shell command
.SH SYNOPSIS
.nf
.ft B
#include
int system(const char *\fIstring\fP)
system.asm
//====================================================================================//
// 文件名: system.asm
// 描 述: 该文件的程序主要用于初始化SPCE061A和PDIUSBD12,以及对PDIUSBD12的读写操作
// 日 期: 2003/04/03
//
system.asm
//====================================================================================//
// 文件名: system.asm
// 描 述: 该文件的程序主要用于初始化SPCE061A和PDIUSBD12,以及对PDIUSBD12的读写操作
// 日 期: 2003/04/03
//
system.asm
.include hardware.inc
.code
//void memset(void* addr,int value,unsigned int size);
.PUBLIC _System_Initial
.CODE
_System_Initial: .PROC
// R1 = 0x0000 ;
R1