代码搜索:PID
找到约 10,000 项符合「PID」的源代码
代码结果 10,000
www.eeworm.com/read/153384/12038359
h memintercept.h
/* -*- mode: C; c-file-style: "linux" -*- */
/* MemProf -- memory profiler and leak detector
* Copyright 1999, 2000, 2001, Red Hat, Inc.
* Copyright 2002, Kristian Rietveld
*
* This program is fr
www.eeworm.com/read/341447/12083951
cpp raswap.cpp
// RaSwap.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "RaSwap.h"
#include
#define ULONG_PTR DWORD
#define DWORD_PTR DWORD
#i
www.eeworm.com/read/255043/12104098
ini ftd2xxun.ini
[Uninstall]
Device=VID_0403&PID_6001
Converter=FTD2XX
Key=FTD2XX
www.eeworm.com/read/152396/12118020
m selftuning_rls_ga.m
%Selftuning_RLS_GA.m
%Written by Ian Griffin July 2003
%Last Modified 20-08-03
%____________________________________________________________________
clc
clear
global sys_controlled
global time
www.eeworm.com/read/253971/12172403
m freqoffset.m
function opfilename = freqoffset(ipfilename, carroff)
% add carrier frequency offset to a file of 'SYSCLK' sampled complex data
%
% opfilename = freqoffset(ipfilename, carroff)
% ipfilename: input
www.eeworm.com/read/253836/12184013
c shell.c
#include "apue.h"
#include
#include
#define MAXLINE 4096
int main()
{
char buf[MAXLINE], *argv[10],*p=NULL;
pid_t pid;
int status ,i=0, j=0,t=0;
printf( "%%"
www.eeworm.com/read/253762/12200967
inf bulkusb.inf
; Installation inf for the Intel 82930 USB Bulk IO Test Board
;
; (c) Copyright 1999 Microsoft
;
[Version]
Signature="$CHICAGO$"
Class=USB
ClassGUID={36FC9E60-C465-11CF-8056-444553540000}
pr
www.eeworm.com/read/253411/12224913
28 fig8.28
#include "apue.h"
int
main(void)
{
pid_t pid;
if ((pid = fork()) < 0)
err_sys("fork error");
else if (pid != 0) { /* parent */
sleep(2);
exit(2); /* terminate with exit status 2 */
}
www.eeworm.com/read/253411/12225036
8 fig8.8
#include "apue.h"
#include
int
main(void)
{
pid_t pid;
if ((pid = fork()) < 0) {
err_sys("fork error");
} else if (pid == 0) { /* first child */
if ((pid = fork()) < 0)
err_s
www.eeworm.com/read/253411/12225167
33 fig15.33
#include "apue.h"
#include
#include
#define NLOOPS 1000
#define SIZE sizeof(long) /* size of shared memory area */
static int
update(long *ptr)
{
return((*ptr)++); /* retur