代码搜索:Terminated
找到约 1,727 项符合「Terminated」的源代码
代码结果 1,727
www.eeworm.com/read/127694/6002613
c sig_chld_waitpid.c
#include "unp.h"
void
sig_chld(int signo)
{
pid_t pid;
int stat;
while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0) {
/* printf("child %d terminated\n", pid); */
}
return;
}
www.eeworm.com/read/127694/6002733
c sig_chld_waitpid.c
#include "unp.h"
void
sig_chld(int signo)
{
pid_t pid;
int stat;
while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0) {
printf("child %d terminated\n", pid);
}
return;
}
www.eeworm.com/read/127694/6002793
c sig_chld_waitpid.c
#include "unp.h"
void
sig_chld(int signo)
{
pid_t pid;
int stat;
while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0) {
/* printf("child %d terminated\n", pid); */
}
return;
}
www.eeworm.com/read/127694/6002849
c sigchldwaitpid.c
#include "unp.h"
void
sig_chld(int signo)
{
pid_t pid;
int stat;
while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0)
printf("child %d terminated\n", pid);
return;
}
www.eeworm.com/read/127694/6002900
c sigchldwaitpid.c
#include "unp.h"
void
sig_chld(int signo)
{
pid_t pid;
int stat;
while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0) {
printf("child %d terminated\n", pid);
}
return;
}
www.eeworm.com/read/127694/6002926
c sigchldwaitpid.c
#include "unp.h"
void
sig_chld(int signo)
{
pid_t pid;
int stat;
while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0)
printf("child %d terminated\n", pid);
return;
}
www.eeworm.com/read/120487/6072601
euc_jp readme.euc_jp
糠しいエンコ〖ディング恃垂簇眶の纳裁数恕
2002/09/18 Tatsuo Ishii
はじめに
PostgreSQLには·デ〖タベ〖スとフロントエンドのエンコ〖ディングが佰なる
ときに·极瓢弄にエンコ〖ディングの恃垂を乖う怠墙がありますˉこのディレ
クトリには·そのときに蝗われる簇眶が判峡されていますˉこれらの簇眶はユ〖
ザ年盗C簇眶として·initdbの面で判峡されますˉ恶挛弄には· ...
www.eeworm.com/read/100127/6273995
py bgenstringbuffer.py
"""Buffers used to hold null-terminated strings."""
from bgenBuffer import FixedOutputBufferType
from bgenStackBuffer import StackOutputBufferType
from bgenHeapBuffer import HeapOutputBufferType
c
www.eeworm.com/read/410239/11295835
pas unit2.pas
unit Unit2;
interface
uses
Classes, SysUtils, windows;
type
TFileChangeNotify = class(TThread)
private
protected
procedure Execute; override;
procedure filenotify;
www.eeworm.com/read/408584/11380239
c sigchldwaitpid.c
#include "unp.h"
void
sig_chld(int signo)
{
pid_t pid;
int stat;
while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0) {
printf("child %d terminated\n", pid);
}
return;
}