代码搜索:Terminated
找到约 1,727 项符合「Terminated」的源代码
代码结果 1,727
www.eeworm.com/read/408502/11384286
cpp step7.cpp
/* Cancel - Creates a new thread with long running query when the letter 'a' is typed.
* Cancels a query when letter 'C' is typed.
* All threads are terminated when the letter 'Q' is entered.
www.eeworm.com/read/126953/14391922
cpp step7.cpp
// Cancel - Creates a new thread with long running query when the letter 'a' is typed.
// Cancels a query when letter 'C' is typed.
// All threads are terminated when the letter 'Q' is entered.
www.eeworm.com/read/126953/14391981
cpp step7.cpp
// Cancel - Creates a new thread with long running query when the letter 'a' is typed.
// Cancels a query when letter 'C' is typed.
// All threads are terminated when the letter 'Q' is entered.
www.eeworm.com/read/10438/186412
c wcslen.c
/***
*wcslen.c - contains wcslen() routine
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* wcslen returns the length of a null-terminated wide-character s
www.eeworm.com/read/16273/666271
c strlen.c
/***
*strlen.c - contains strlen() routine
*
* Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* strlen returns the length of a null-terminated strin
www.eeworm.com/read/480930/1306286
s strchr.s
/*
* arch/alpha/lib/strchr.S
* Contributed by Richard Henderson (rth@tamu.edu)
*
* Return the address of a given character within a null-terminated
* string, or null if it is not found.
*/
#inc
www.eeworm.com/read/479151/1339521
flashpoint readme.flashpoint
The BusLogic FlashPoint SCSI Host Adapters are now fully supported on Linux.
The upgrade program described below has been officially terminated effective
31 March 1997 since it is no longer needed.
www.eeworm.com/read/472881/1403276
c wait.c
/*
* Connect to the server, then wait until terminated (useful for stopping the server
* from exiting without a window manager)
*/
#include "nano-X.h"
int main()
{
char c;
read(GrOpen(), &c, 1)
www.eeworm.com/read/250243/4434701
s strchr.s
/*
* arch/alpha/lib/strchr.S
* Contributed by Richard Henderson (rth@tamu.edu)
*
* Return the address of a given character within a null-terminated
* string, or null if it is not found.
*/
#inc
www.eeworm.com/read/246537/4494070
c sigchldwait.c
#include "unp.h"
void
sig_chld(int signo)
{
pid_t pid;
int stat;
pid = wait(&stat);
printf("child %d terminated\n", pid);
return;
}