代码搜索:pid控制
找到约 10,000 项符合「pid控制」的源代码
代码结果 10,000
www.eeworm.com/read/185783/8985380
c tellwait1.c
#include
#include "ourhdr.h"
static void charatatime(char *);
int
main(void)
{
pid_t pid;
if ( (pid = fork()) < 0)
err_sys("fork error");
else if (pid == 0) {
charatatime("outp
www.eeworm.com/read/185783/8985385
c vfork1.c
#include
#include "ourhdr.h"
int glob = 6; /* external variable in initialized data */
int
main(void)
{
int var; /* automatic variable on the stack */
pid_t pid;
var = 88;
pri
www.eeworm.com/read/185783/8985401
c system.c
#include
#include
#include
#include
int
system(const char *cmdstring) /* version without signal handling */
{
pid_t pid;
int status;
if (cmdstring
www.eeworm.com/read/382938/8989776
m chap1_12.m
%PID Controler with Partial differential
clear all;
close all;
ts=20;
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;u_3=0;u_4=0;u_5=0;
www.eeworm.com/read/382649/9007924
h llc.h
/*
* Copyright (c) 1993, 1994, 1997
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are
www.eeworm.com/read/426604/9011387
inf ftdiport.inf
; FTDIPORT.INF
; Copyright (c) 2000-2008 FTDI Ltd.
;
[Version]
DriverVer=1.1.0.2
[Manufacturer]
%FTDI%=FtdiHw
[FtdiHw]
%VID_0403&PID_6001.DeviceDesc%=FtdiPort232,FTDIBUS\COMPORT&VID_0403
www.eeworm.com/read/426604/9011403
inf ftdiport.inf
; FTDIPORT.INF
; Copyright (c) 2000-2008 FTDI Ltd.
;
[Version]
DriverVer=1.1.0.2
[Manufacturer]
%FTDI%=FtdiHw
[FtdiHw]
%VID_0403&PID_6001.DeviceDesc%=FtdiPort232,FTDIBUS\COMPORT&VID_0403
www.eeworm.com/read/382560/9020478
cpp ta.cpp
//文件ta.cpp
#include "iostream.h"
#include "ta.h"
ta::ta(char*na,int num,char*pid,char s,int y,int m,int d,char*cNO,char*sub,char*pri,char*dep ):graduate(na,num,pid,s,y,m,d,cNO,sub),teacher(na,num,
www.eeworm.com/read/382560/9020494
cpp graduate.cpp
//文件graduate.cpp
#include
#include
#include "graduate.h"
#include "fstream.h"
graduate::graduate(char*na,int num,char*pid,char s,int y,int m,int d,char*cNO,char*sub):student
www.eeworm.com/read/283381/9025792
c fork.c
#include
#include
#include
int count=0;
void parent(void);
void child(void);
void parent(void)
{
while(1)
{
count