代码搜索结果

找到约 10,000 项符合 PID 的代码

changelog

2000-02-29 Jonathan Larmour * include/pkgconf/mlt_arm_pid_ram.h: * include/pkgconf/mlt_arm_pid_ram.ldi: * include/pkgconf/mlt_arm_pid_ram.mlt:

notification.java

/*------------------------------------------------------------------------- * * Notification.java * This is the implementation of the PGNotification interface * * Copyright (c) 2003, PostgreS

foll-vfork.c

#include #include #ifdef PROTOTYPES int main (void) #else main () #endif { int pid; pid = vfork (); if (pid == 0) { printf ("I'm the child!\n"); execlp ("gdb.base

pt.c

/* * Copyright (C) 2001,2002 IDEALX (http://www.idealx.com/). * Written by Julien Pinon . * Copyright (C) 2003 Philippe Gerum . * * Xenomai is free software; y

err_remove_state.pod

=pod =head1 NAME ERR_remove_state - free a thread's error queue =head1 SYNOPSIS #include void ERR_remove_state(unsigned long pid); =head1 DESCRIPTION ERR_remove_state() frees

说明.txt

dsPIC30f3010的PID控制代码,全部中文注释。 该代码需要复制到非中文路径下,使用开发环境MPLAB IDE 8.01或更高版本。 该开发环境需安装有MCC30编译器。

fork.c

/* * linux/kernel/fork.c * * Copyright (C) 1991, 1992 Linus Torvalds */ /* * 'fork.c' contains the help-routines for the 'fork' system call * (see also system_call.s). * Fork is r

exit.c

/* * linux/kernel/exit.c * * Copyright (C) 1991, 1992 Linus Torvalds */ #define DEBUG_PROC_TREE #include #include #include #include

exit.c

/* * linux/kernel/exit.c * * (C) 1991 Linus Torvalds */ #include #include #include #include #include #include

exec1.c

#include "apue.h" #include char *env_init[] = { "USER=unknown", "PATH=/tmp", NULL }; int main(void) { pid_t pid; if ((pid = fork()) < 0) { err_sys("fork error"); } else if (pid ==