1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-15 07:54:13 +00:00

Use the same TIMER_INTERVAL on all platforms. (#262)

This removes a special case for SPARC which was using a slower
interval.
This commit is contained in:
Bruce Mitchener 2021-01-21 14:41:37 +07:00 committed by GitHub
parent 979c3ad6be
commit 68de0e2dfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -405,12 +405,7 @@ void update_timer() {
/* TIMER_INTERVAL usec ~ 20 per second. This should live in some
machine-configuration
file somewhere - it can be changed as the -t parameter to lisp*/
#ifdef sparc
int TIMER_INTERVAL = 100000;
#else
int TIMER_INTERVAL = 25000;
#endif
extern int LispWindowFd;