代码搜索结果

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

usbstor.inf

[Version] Signature="$CHICAGO$" Class=USB ClassGUID={36FC9E60-C465-11CF-8056-444553540000} provider=%MSFT% LayoutFile=LAYOUT.INF DriverVer=12/09/1999,5.00.2195.1 [ControlFlags] ExcludeFromSe

kannel-cvs.init

#!/bin/sh # Start/stop the Kannel boxes: One bearer box and one WAP box. # This is the default init.d script for Kannel. Its configuration is # appropriate for a small site running Kannel on one mac

kannel-devel.init

#!/bin/sh # Start/stop the Kannel boxes: One bearer box and one WAP box. # This is the default init.d script for Kannel. Its configuration is # appropriate for a small site running Kannel on one mac

kannel.init

#!/bin/sh # Start/stop the Kannel boxes: One bearer box and one WAP box. # This is the default init.d script for Kannel. Its configuration is # appropriate for a small site running Kannel on one mac

speed_pi.asm.txt

************************************************************* * Speed PI Regulator ************************************************************* ; .ref pid_reg_spd,pid_reg_spd_init ; function cal

lock_test.c

/* include lock_test */ #include "unpipc.h" pid_t lock_test(int fd, int type, off_t offset, int whence, off_t len) { struct flock lock; lock.l_type = type; /* F_RDLCK or F_WRLCK */ lock.l_start

lockmainubuf.c

#include "unpipc.h" #define SEQFILE "seqno" /* filename */ void my_lock(int), my_unlock(int); int main(int argc, char **argv) { int fd, i, seqno, c; pid_t pid; ssize_t n; char line[MAXLINE +

lockmain.c

#include "unpipc.h" #define SEQFILE "seqno" /* filename */ void my_lock(int), my_unlock(int); int main(int argc, char **argv) { int fd; long i, seqno; pid_t pid; ssize_t n; char line[MAXLINE

ptracetest.c

/* * This little program checks whether your operating system allows a process * to attach to another process whoose uid is only identical because it * revoked its privileges. * * If it detects

tree.h

struct tree_node { proc_t *proc; pid_t pid; pid_t ppid; char *line; char *cmd; char **cmdline; char **environ; int children; int maxchildren; int *child; in