代码搜索:SIGHUP
找到约 277 项符合「SIGHUP」的源代码
代码结果 277
www.eeworm.com/read/273665/4199947
exp sighup.exp
#
# @(#) Check services file reloaded after SIGHUP
#
load_lib "util-defs.exp"
# Create a smb.conf file from a list of sections. Each section consists of
# a name and a list of lines which are the c
www.eeworm.com/read/392528/8338012
h usignal.h
#include
#ifndef SIGHUP
#define SIGHUP 1 /* hangup */
#endif
#ifndef SIGQUIT
#define SIGQUIT 3 /* quit */
#endif
www.eeworm.com/read/290595/8473520
__avr_gdbinit
define reset
SIGNAL SIGHUP
end
file main.elf
target remote localhost:4242
break main
www.eeworm.com/read/427322/8951656
c signaltest.c
#include
#include
#include
void sigroutine(int dunno) { /* 信号处理例程,其中dunno将会得到信号的值 */
switch (dunno) {
case 1:
printf("Get a signal -- SIGHUP ");
break;
www.eeworm.com/read/372371/9512416
log vsftpd.log
/var/log/vsftpd.log {
# ftpd doesn't handle SIGHUP properly
nocompress
}
www.eeworm.com/read/438790/7726939
__avr_gdbinit
define reset
SIGNAL SIGHUP
end
file main.elf
target remote localhost:4242
break main
www.eeworm.com/read/330038/12918797
java signaltest.java
package kh.signal;
/**
This class demonstrates how to use JavaSignals.
*/
public class SignalTest implements SignalListener
{
public SignalTest()
{
SignalManager.addListener(this);
}