代码搜索:Terminated
找到约 1,727 项符合「Terminated」的源代码
代码结果 1,727
www.eeworm.com/read/243567/4522379
s ev67-strncat.s
/*
* arch/alpha/lib/ev67-strncat.S
* 21264 version contributed by Rick Gorton
*
* Append no more than COUNT characters from the null-terminated string SRC
* to the
www.eeworm.com/read/237551/4626666
s strncpy.s
/* strncpy(DST, SRC, COUNT) - Copy no more than COUNT bytes of the
null-terminated string from SRC to DST. If SRC does not cover all of
COUNT, the balance is zeroed.
For SPARC v9.
Copyrig
www.eeworm.com/read/229812/4740613
cmp err36.cmp
Warning(W39): Target (.c.obj) not mentioned in any makefile
Error(F36): Illegal attempt to update special target (.c.obj)
Error(E02): Make execution terminated
www.eeworm.com/read/229812/4740625
cmp err43.cmp
Error(E42): Last command making (all.43) returned a bad status
Error(F43): Deleting (all.43): Permission denied
Error(E02): Make execution terminated
www.eeworm.com/read/229812/4750734
gml execcom.gml
.pp
.if '&machsys' eq 'QNX' .do begin
.autonote
.note
The "l" form of the &*1. functions (&*1.l...) contain an argument list
terminated by a
.mono NULL
pointer.
The argument
.arg arg0
should
www.eeworm.com/read/216781/4888407
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/209559/4961664
s ev67-strncat.s
/*
* arch/alpha/lib/ev67-strncat.S
* 21264 version contributed by Rick Gorton
*
* Append no more than COUNT characters from the null-terminated string SRC
* to the
www.eeworm.com/read/209211/4983787
c hideset.c
#include
#include
#include
#include "cpp.h"
/*
* A hideset is a null-terminated array of Nlist pointers.
* They are referred to by indices in the hidesets array.
* Hideset
www.eeworm.com/read/209211/4984167
c p9any.c
/*
* p9any - protocol negotiator.
*
* Protocol:
* Server->Client: list of proto@domain, tokenize separated, nul terminated
* Client->Server: proto domain, tokenize separated (not proto@domain), n
www.eeworm.com/read/198916/5081090
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;
}