代码搜索结果

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

syscalls.c

/* * linux/arch/ppc/kernel/sys_ppc.c * * PowerPC version * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) * * Derived from "arch/i386/kernel/sys_i386.c" * Adapted from the i386 ver

binfmt_elfn32.c

/* * Support for n32 Linux/MIPS ELF binaries. * * Copyright (C) 1999, 2001 Ralf Baechle * Copyright (C) 1999, 2001 Silicon Graphics, Inc. * * Heavily inspired by the 32-bit Sparc compat code whi

binfmt_elf32.c

/* * Support for 32-bit Linux/MIPS ELF binaries. * * Copyright (C) 1999, 2001 Ralf Baechle * Copyright (C) 1999, 2001 Silicon Graphics, Inc. * * Heavily inspired by the 32-bit Sparc compat code

getpid.c

/* Stub for getpid. */ #include /* This should really return pid_t, but that doesn't seem to be in . */ int _DEFUN_VOID (_getpid) { return 1; }

syskill.c

/* connector for kill */ #include int kill (pid, sig) int pid; int sig; { #ifdef REENTRANT_SYSCALLS_PROVIDED return _kill_r (_REENT, pid, sig); #else return _kill (pid, sig);

tty.h

/* tty.h: shared tty info for cygwin Copyright 2000, 2001, 2002 Red Hat, Inc. This file is part of Cygwin. This software is a copyrighted work licensed under the terms of the Cygwin license. Pl

root.c

/* * linux/fs/proc/root.c * * Copyright (C) 1991, 1992 Linus Torvalds * * proc root directory handling functions */ #include #include #include

binfmt_elf32.c

/* * Support for 32-bit Linux/MIPS ELF binaries. * * Copyright (C) 1999, 2001 Ralf Baechle * Copyright (C) 1999, 2001 Silicon Graphics, Inc. * * Heavily inspired by the 32-bit Sparc compat code

clients.c

/* * NanoWM - Window Manager for Nano-X * * Copyright (C) 2000, 2003 Greg Haerr * Copyright (C) 2000 Alex Holden */ #include #include

err2str.h

///////////////////////////////////////////////////////// LPCTSTR AHExtErr2String(DWORD AHerr, DWORD RCpfl) { LPCTSTR SubError; switch(AHerr) { case ErrorAHException : Sub