代码搜索:kill
找到约 2,615 项符合「kill」的源代码
代码结果 2,615
www.eeworm.com/read/437028/1836978
sysv zapit.sysv
#!/bin/sh
# $Header: /home/harrison/c/tcgmsg/ipcv4.0/RCS/zapit.sysv,v 1.1 91/12/06 17:28:04 harrison Exp Locker: harrison $
# kill -9 all processes containing first argument ... sysv version
if tes
www.eeworm.com/read/422060/2043801
phpt 071.phpt
--TEST--
mysqli thread_id & kill
--SKIPIF--
--FILE--
www.eeworm.com/read/419387/2078627
c killed.c
#include
#include
#include
#include
int pid;
void *
child_func (void *dummy)
{
kill (pid, SIGKILL);
exit (1);
}
int
main ()
{
pthread_t child;
www.eeworm.com/read/382361/2637709
h fs.h
/*
* linux/fs.h compatibility header
*/
#ifndef __COMPAT_LINUX_FS_H_
#define __COMPAT_LINUX_FS_H_
#include
#if LINUX_VERSION_CODE < 0x020200
/* no fasync */
#define KILL_FASYNC(
www.eeworm.com/read/158872/5591929
c killed.c
#include
#include
#include
#include
int pid;
void *
child_func (void *dummy)
{
kill (pid, SIGKILL);
exit (1);
}
int
main ()
{
pthread_t child;
www.eeworm.com/read/413111/11167387
pas unit_mainform.pas
unit Unit_MainForm;
interface
uses
Windows,
Unit_Config,
Unit_Common,
Unit_SysUtils,
Unit_Classes,
Unit_MyCyBuf,
Lh5Unit,
ThreadUnit,
Unit_Kill,
Unit_Reg,
Unit_Oth
www.eeworm.com/read/238102/13907369
h key.h
#ifndef _KEY_H_
#define _KEY_H_
#ifdef _KEY_C_
#define EXT_KEY
#else
#define EXT_KEY extern
#endif
#define MacroConst_KeyIntervalTimer 10 //delay 100ms to kill jitt,100=BaseTime
www.eeworm.com/read/184783/9076450
c sigstop.c
#include
#include
#include
#include
int main()
{
int i;
kill(getpid(),SIGSTOP);
for(i = 0; i < 10; i++)
printf("I am running\n");
return 0;
}
www.eeworm.com/read/435688/7787781
bash demo-sock.bash
#!/bin/bash
#
# Run GTK-server in socket mode.
#
# 1) /etc/services: add the line 'demo 50000/tcp'
# 2) /etc/inetd.conf: add the line 'demo stream tcp nowait nobody /some/dir/demo-sock.bash'
# 3) kill
www.eeworm.com/read/120028/6080387
c sigstop.c
#include
#include
#include
#include
int main()
{
int i;
kill(getpid(),SIGSTOP);
for(i = 0; i < 10; i++)
printf("I am running\n");
return 0;
}