have proc.h, socketvar.h, tty.h include select.h automatically

This commit is contained in:
cgd 1993-05-20 11:48:50 +00:00
parent 5cecaec7a1
commit da6656ddd5
4 changed files with 7 additions and 5 deletions

View File

@ -1 +1 @@
revision 1.3 intentionally removed
revision 1.4 intentionally removed

View File

@ -24,7 +24,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: select.h,v 1.3 1993/05/20 10:26:36 cgd Exp $
* $Id: select.h,v 1.4 1993/05/20 11:49:00 cgd Exp $
*/
#ifndef _SYS_SELECT_H_
@ -38,13 +38,13 @@ struct selinfo {
};
#ifdef KERNEL
struct proc;
/* record a select request */
void selrecord __P((struct proc *, struct selinfo *));
/* wakeup a selecting proc */
void selwakeup __P((struct selinfo *));
#endif /* KERNEL */
#endif /* !_SYS_SELECT_H_ */

View File

@ -31,12 +31,14 @@
* SUCH DAMAGE.
*
* from: @(#)socketvar.h 7.17 (Berkeley) 5/5/91
* $Id: socketvar.h,v 1.4 1993/05/18 18:20:38 cgd Exp $
* $Id: socketvar.h,v 1.5 1993/05/20 11:49:03 cgd Exp $
*/
#ifndef _SYS_SOCKETVAR_H_
#define _SYS_SOCKETVAR_H_
#include <sys/select.h> /* for struct selinfo */
/*
* Kernel structure per socket.
* Contains send and receive buffer queues,

View File

@ -1 +1 @@
revision 1.5 intentionally removed
revision 1.6 intentionally removed