代码搜索:Terminated

找到约 1,727 项符合「Terminated」的源代码

代码结果 1,727
www.eeworm.com/read/102720/15761870

3 getpass.3

GETPASS(3) Minix Programmer's Manual GETPASS(3) NAME getpass - read a password SYNOPSIS #include char *getpass(const cha
www.eeworm.com/read/101790/15809651

htm subject_66562.htm

序号:66562 发表者:李强-01 发表日期:2003-12-25 11:28:25 主题:关于线程的问题 内容:我这里有一个线程的程序:void CSmsclientDlg::OnButton6() {    UINT ret;    .
www.eeworm.com/read/381752/9073946

cpp chapter2-23.cpp

//文件名:CHAPTER2-23.cpp #include #include #include using namespace std; int main() { string s(10u, ' '); // Create a string of ten blanks. const
www.eeworm.com/read/183955/9128994

~pas ttimethreadclass.~pas

unit TTimeThreadClass; interface uses Classes,StdCtrls, SysUtils, ComObj, Messages,Dialogs,activeX; type TTimeThread = class(TThread) private protected procedure
www.eeworm.com/read/183955/9129270

pas ttimethreadclass.pas

unit TTimeThreadClass; interface uses Classes,StdCtrls, SysUtils, ComObj, Messages,Dialogs,activeX; type TTimeThread = class(TThread) private protected procedure
www.eeworm.com/read/178805/9385278

c str_cli.c

//#include "unp.h" #include #include #include #include #include #include #include #include #
www.eeworm.com/read/374163/9418498

c xstrncpy.c

/* NUL-terminated version of strncpy() */ #include #include "xstrncpy.h" /* caller guarantees n > 0 */ void xstrncpy(char *dest, const char *src, size_t n) { strncpy(dest, src, n-1); des
www.eeworm.com/read/163761/10147048

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/358784/10179669

inc irvine32.inc

; Include file for Irvine32.lib (Irvine32.inc) INCLUDE SmallWin.inc ; MS-Windows prototypes, structures, and constants .NOLIST ; Last update: 1/27/02 ;--------------------------
www.eeworm.com/read/278507/10529753

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; }