/* * Copyright (c) 1985 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)siginterrupt.c 5.2 (Berkeley) 3/9/86"; #endif LIBC_SCCS and not lint #include /* * 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)); }