WSSetSignalHandlerFromFunction (C 函数)
为 WSTP 库信号处理机制中的信号 s 安装由 sf 指向的 Unix 信号处理程序.
范例
基本范例 (1)
#include <signal.h>
#include "wstp.h"
void h(int signum)
{
/* ... */
}
/* set a SIGHUP signal handler in the WSTP environment */
void f(WSENV ep)
{
int err;
err = WSSetSignalHandlerFromFunction(ep, SIGHUP, (void *)h);
if(err != WSEOK)
{ /* unable to set the signal handler in ep */ }
}