代码搜索:PID
找到约 10,000 项符合「PID」的源代码
代码结果 10,000
www.eeworm.com/read/133772/5902898
changelog
2003-09-19 Gary Thomas
* src/ser_16x5x.c (pc_serial_init):
Allow platform to define CYG_IO_SERIAL_GENERIC_16X5X_BAUD_GENERATOR if the
baud rate clock (values) cannot be
www.eeworm.com/read/133329/5905728
d errorpath.d
pid$1::$2:entry
{
self->spec = speculation();
speculate(self->spec);
printf("%x %x %x %x %x", arg0, arg1, arg2, arg3, arg4);
}
pid$1::$2:
/self->spec/
{
speculate(self->spec);
}
pid$1::$2:return
www.eeworm.com/read/133329/5905766
d trussrw.d
syscall::read:entry,
syscall::write:entry
/pid == $1/
{
printf("%s(%d, 0x%x, %4d)", probefunc, arg0, arg1, arg2);
}
syscall::read:return, syscall::write:return
/pid == $1/
{
printf("\t\t = %d\n", a
www.eeworm.com/read/133329/5905806
d profpri.d
profile-1001
/pid == $1/
{
@proc[execname] = lquantize(curlwpsinfo->pr_pri, 0, 100, 10);
}
www.eeworm.com/read/131315/5937266
c hup-named.c
/* hup-named -- cause the name server to reload its data files
* vix 16sep91 [written]
*/
#include
#include
#include
#define PIDFILE "/etc/named.pid"
#define NAMED "
www.eeworm.com/read/131315/5942510
c pidwait.c
/* pidwait.c - wait for child to exit */
#ifndef lint
static char ident[] = "@(#)$Id: pidwait.c,v 1.10 1992/12/15 00:20:22 jromine Exp $";
#endif /* lint */
#include "../h/mh.h"
#include
#
www.eeworm.com/read/129924/5966116
h wait.h
/* $NetBSD: wait.h,v 1.7 1994/06/29 06:46:23 cgd Exp $ */
/*
* Copyright (c) 1982, 1986, 1989, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use
www.eeworm.com/read/129924/5966277
h wait.h
/* $NetBSD: wait.h,v 1.7 1994/06/29 06:46:23 cgd Exp $ */
/*
* Copyright (c) 1982, 1986, 1989, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use
www.eeworm.com/read/127781/5997145
c 4xx_tlb.c
/*
* BK Id: SCCS/s.4xx_tlb.c 1.5 05/17/01 18:14:23 cort
*/
/*
*
* Copyright (c) 1998-1999 TiVo, Inc.
* Original implementation.
* Copyright (c) 1999-2000 Grant Erickson
www.eeworm.com/read/127694/6002362
c sigchldwaitpid.c
#include "unp.h"
void
sig_chld(int signo)
{
pid_t pid;
int stat;
while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0) {
printf("child %d terminated\n", pid);
}
return;
}