代码搜索结果
找到约 10,000 项符合
Control System 的代码
system.h
/* system.h: System-dependent declarations. Include this first.
$Id: system.h,v 1.1 1997/08/16 06:01:30 bjg Exp $
Copyright (C) 1997 Free Software Foundation, Inc.
This program is free sof
system.h
#pragma System
/* Gives a string to sh just as if the string had been typed as a command
from the terminal. The current process waits until the shell terminates.
The exit status from
system.c
#include
#include
#include
#include
int
system(const char *cmdstring) /* version without signal handling */
{
pid_t pid;
int status;
if (cmdstring
system.c
#include
#include
#include
#include
#include
int
system(const char *cmdstring) /* with appropriate signal handling */
{
pid_t pid;
int
system.h
#define move_to_user_mode() \
__asm__ ("movl %%esp,%%eax\n\t" \
"pushl $0x17\n\t" \
"pushl %%eax\n\t" \
"pushfl\n\t" \
"pushl $0x0f\n\t" \
"pushl $1f\n\t" \
"iret\n" \
"1:\tmovl $0x17,%%eax\n\t
system.cpp
// system.cpp : implementation file
//
#include "stdafx.h"
#include "resource.h"
#include "cspublic.h"
//#include "system.h"
#include "basicwin.h"
#include "basicbut.h"
#include "systemse.