29 lines
509 B
C
29 lines
509 B
C
#ifndef lint
|
|
#ifdef sccs
|
|
static char sccsid[] = "@(#)ndis_d_wait.c 1.1 94/10/31 Copyr 1985 Sun Micro";
|
|
#endif
|
|
#endif
|
|
|
|
/*
|
|
* Copyright (c) 1985 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
/*
|
|
* Ndis_d_wait.c - Default wait3 function that is a nop.
|
|
*/
|
|
#include <sunwindow/ntfy.h>
|
|
#include <sunwindow/ndis.h>
|
|
#include <signal.h>
|
|
|
|
/* ARGSUSED */
|
|
extern Notify_value
|
|
notify_default_wait3(client, pid, status, rusage)
|
|
Notify_client client;
|
|
int pid;
|
|
union wait *status;
|
|
struct rusage *rusage;
|
|
{
|
|
return(NOTIFY_IGNORED);
|
|
}
|
|
|