1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-05-04 15:26:16 +00:00

Remove HP platform support. (#34)

This removes code related to HP9000, HPTIMERBUG, and HPUX defines.

It leaves KB_HP9000 for now as I'm not sure about renumbering
those constants.

This should not impact any of the core emulation code.
This commit is contained in:
Bruce Mitchener
2020-12-13 12:35:53 +07:00
committed by GitHub
parent 750d84c78c
commit 1c912ff57e
19 changed files with 19 additions and 277 deletions

View File

@@ -33,15 +33,10 @@ static char *id = "$Id: xinit.c,v 1.5 2001/12/26 22:17:06 sybalsky Exp $ Copyrig
#include "xwinmandefs.h"
#ifdef HPUX
#define FASYNC O_NONBLOCK
#endif /* HPUX */
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/select.h>
#ifndef HPUX
#ifndef LINUX
#ifndef MACOSX
#ifndef FREEBSD
@@ -49,7 +44,6 @@ static char *id = "$Id: xinit.c,v 1.5 2001/12/26 22:17:06 sybalsky Exp $ Copyrig
#endif /* FREEBSD */
#endif /* MACOSX */
#endif /* LINUX */
#endif /* HPUX */
#ifdef ISC
#define FASYNC O_NONBLOCK
@@ -202,9 +196,7 @@ void Open_Display(DspInterface dsp)
{
FD_SET(ConnectionNumber(dsp->display_id), &LispReadFds);
#ifndef ISC
#ifndef HPUX
fcntl(ConnectionNumber(dsp->display_id), F_SETOWN, getpid());
#endif /* HPUX */
#endif /* ISC */
/****************************************************/