代码搜索:PID
找到约 10,000 项符合「PID」的源代码
代码结果 10,000
www.eeworm.com/read/341517/12080509
m chap2_8f.m
%PID Controler Based on Ziegler-Nichols
clear all;
close all;
ts=0.25;
sys=tf(1,[10,2,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
axis('square'),zgrid('new');
figure(1);
rloc
www.eeworm.com/read/152659/12094924
c sched.c
#include
#include
#include
#include
#include
#include
#include
struct task_struct task[TASK_NR];
struct task_struct* curren
www.eeworm.com/read/152508/12108685
v usbf_pl.v
/////////////////////////////////////////////////////////////////////
//// ////
//// Protocol Layer
www.eeworm.com/read/152102/12139701
c sched.c
#include
#include
#include
#include
#include
#include
#include
struct task_struct task[TASK_NR];
struct task_struct
www.eeworm.com/read/152102/12139730
kernle
#include
#include
#include
#include
#include
#include
#include
struct task_struct task[TASK_NR];
struct task_struct
www.eeworm.com/read/253411/12224822
7 fig1.7
#include "apue.h"
#include
int
main(void)
{
char buf[MAXLINE]; /* from apue.h */
pid_t pid;
int status;
printf("%% "); /* print prompt (printf requires %% to print %) */
while (fg
www.eeworm.com/read/253411/12225052
2 fig11.2
#include "apue.h"
#include
pthread_t ntid;
void
printids(const char *s)
{
pid_t pid;
pthread_t tid;
pid = getpid();
tid = pthread_self();
printf("%s pid %u tid %u (0x%x)\n", s, (u
www.eeworm.com/read/253411/12225063
1 fig8.1
#include "apue.h"
int glob = 6; /* external variable in initialized data */
char buf[] = "a write to stdout\n";
int
main(void)
{
int var; /* automatic variable on the stack */
pid_t pid;
var
www.eeworm.com/read/253411/12225090
6 fig10.6
#include "apue.h"
#include
static void sig_cld(int);
int
main()
{
pid_t pid;
if (signal(SIGCLD, sig_cld) == SIG_ERR)
perror("signal error");
if ((pid = fork()) < 0) {
perror("fo
www.eeworm.com/read/253411/12225128
5 fig15.5
#include "apue.h"
int
main(void)
{
int n;
int fd[2];
pid_t pid;
char line[MAXLINE];
if (pipe(fd) < 0)
err_sys("pipe error");
if ((pid = fork()) < 0) {
err_sys("fork error");
} else if (