⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 siginterrupt.c

📁 操作系统SunOS 4.1.3版本的源码
💻 C
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -