1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-05-02 14:40:45 +00:00

Begin to remove ISC platform support. (#40)

We don't want to modify emulation code yet as ISC support included
a number of other things, including some i386 code that isn't used
on other platforms, but is still useful as a reference.
This commit is contained in:
Bruce Mitchener
2020-12-14 13:31:58 +07:00
committed by GitHub
parent 7119613aee
commit 2dba7492af
23 changed files with 11 additions and 1511 deletions

View File

@@ -45,11 +45,6 @@ static char *id = "$Id: xinit.c,v 1.5 2001/12/26 22:17:06 sybalsky Exp $ Copyrig
#endif /* MACOSX */
#endif /* LINUX */
#ifdef ISC
#define FASYNC O_NONBLOCK
#define SIGIO SIGPOLL
#endif /* ISC */
#define FALSE 0
#define TRUE !FALSE
#define PERCENT_OF_SCREEN 95
@@ -195,9 +190,7 @@ void Xevent_after_raid(DspInterface dsp)
void Open_Display(DspInterface dsp)
{
FD_SET(ConnectionNumber(dsp->display_id), &LispReadFds);
#ifndef ISC
fcntl(ConnectionNumber(dsp->display_id), F_SETOWN, getpid());
#endif /* ISC */
/****************************************************/
/* If debugging, set the X connection so that */