代码搜索:PID
找到约 10,000 项符合「PID」的源代码
代码结果 10,000
www.eeworm.com/read/391748/8380196
c waitpid.c
/* Emulate waitpid on systems that just have wait.
Copyright 1994, 1995, 1998, 1999, 2007 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
www.eeworm.com/read/286090/8789483
c waitpid.c
/* Emulate waitpid on systems that just have wait.
Copyright (C) 1994, 1995, 1998, 1999 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it
www.eeworm.com/read/383425/8948647
c jerry.c
/* jerry.c v4.0 */
#include
#include
#include
#include
#include
#include
#include
static void pid2str(char * str, pi
www.eeworm.com/read/323119/13354134
sh kill_n_check.sh
#!/bin/sh
if [ $# -ne 2 ]; then
echo "Usage: kill_n_check.sh killed|restarted"
exit 0
fi
pid_path="$1"
expected_result="$2"
if [ -z "$pid_path" -o ! -r "$pid_path" ]; then
ech
www.eeworm.com/read/221205/14753762
txt 1008desc.txt
功能全称 WK_PID_1008
适用平台或实例 HPUX
输入文件 I_WK_PID_1008_${TMSTAMP}.txt
输出文件 O_WK_PID_1008_${TMSTAMP}.txt
输入文件内容
序号 中文名称 英文名称 备注
1 用户名称 userName
输出文件内容
序号 中文名称 英文名称 备注
1 用户名称 userName
2 进程数量 procAmount
www.eeworm.com/read/286088/8790481
h pidfile.h
/*
pidfile.h - interact with pidfiles
Copyright (c) 1995 Martin Schulze
This file is part of the sysklogd package, a kernel and system log daemon.
This pro
www.eeworm.com/read/286088/8790492
c pidfile.c
/*
pidfile.c - interact with pidfiles
Copyright (c) 1995 Martin Schulze
This file is part of the sysklogd package, a kernel and system log daemon.
This pro
www.eeworm.com/read/285344/8849348
c p7.17.c
#include
#include
#include
#include
int main(void)
{
pid_t pid,wait_pid;
int status;
pid = fork();
if (pid==-1) {
perro
www.eeworm.com/read/285344/8849470
c p9.5.c
#include
#include
#include
#include
int main(void)
{
int pid;
int wait_pid;
int status;
int i;
for(i=1;i
www.eeworm.com/read/170114/9818954
c 9-1.c
#include
#include
main() {
pid_t pid;
pid = fork();
if(!pid)
printf("this is child ");
else if (pid>0)
printf("this is parent,ch