View | Details | Raw Unified | Return to bug 17614
Collapse All | Expand All

(-)signalvar.h (-2 / +1 lines)
Lines 209-215 Link Here
209
void	sigexit __P((struct proc *p, int signum));
209
void	sigexit __P((struct proc *p, int signum));
210
void	siginit __P((struct proc *p));
210
void	siginit __P((struct proc *p));
211
void	trapsignal __P((struct proc *p, int sig, u_long code));
211
void	trapsignal __P((struct proc *p, int sig, u_long code));
212
int	__cursig __P((struct proc *p));
213
212
214
/*
213
/*
215
 * Machine-dependent functions:
214
 * Machine-dependent functions:
Lines 226-232 Link Here
226
 * process, 0 if none.  If there is a pending stop signal with default
225
 * process, 0 if none.  If there is a pending stop signal with default
227
 * action, the process stops in issignal().
226
 * action, the process stops in issignal().
228
 */
227
 */
229
extern __inline int __cursig(struct proc *p)
228
static __inline int __cursig(struct proc *p)
230
{
229
{
231
	sigset_t tmpset;
230
	sigset_t tmpset;

Return to bug 17614