代码搜索:Terminated
找到约 1,727 项符合「Terminated」的源代码
代码结果 1,727
www.eeworm.com/read/129891/14219455
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/129891/14219563
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/129891/14219753
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/129891/14219803
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/129814/14223948
out os2siglist.out
/*
* signal handling
*/
{SIGHUP, "HUP", "Hangup"},
{SIGINT, "INT", "Interrupt"},
{SIGQUIT, "QUIT", "Quit"},
{SIGILL, "ILL", "Illegal instruction"},
{SIGTRAP, "TRAP", "Trace trap"},
{SIGABRT, "
www.eeworm.com/read/128466/14296063
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/229853/14314871
asm lookstr.asm
;put into the public domain by Russell Nelson, nelson@clutx.clarkson.edu
lookup_string:
;enter with ds:si -> string (space or newline terminated), ds:di ->
; list of string/word combinations. S
www.eeworm.com/read/124791/14544173
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/223105/14658464
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/208760/15237730
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;
}