siginterrupt.c

来自「操作系统SunOS 4.1.3版本的源码」· C语言 代码 · 共 30 行

C
30
字号
#if !defined(lint) && defined(SCCSIDS)static	char sccsid[] = "@(#)siginterrupt.c 1.1 92/07/30 SMI"; /* from UCB 5.2 3/9/86 */#endif/* * Copyright (c) 1985 Regents of the University of California. * All rights reserved.  The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */#include <signal.h>/* * Set signal state to prevent restart of system calls * after an instance of the indicated signal. */siginterrupt(sig, flag)	int sig, flag;{	struct sigvec sv;	int ret;	if ((ret = sigvec(sig, 0, &sv)) < 0)		return (ret);	if (flag)		sv.sv_flags |= SV_INTERRUPT;	else		sv.sv_flags &= ~SV_INTERRUPT;	return (sigvec(sig, &sv, 0));}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?