mirror of
https://github.com/Interlisp/maiko.git
synced 2026-05-03 23:09:34 +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:
@@ -405,12 +405,7 @@ void update_timer() {
|
|||||||
/* TIMER_INTERVAL usec ~ 20 per second. This should live in some
|
/* TIMER_INTERVAL usec ~ 20 per second. This should live in some
|
||||||
machine-configuration
|
machine-configuration
|
||||||
file somewhere - it can be changed as the -t parameter to lisp*/
|
file somewhere - it can be changed as the -t parameter to lisp*/
|
||||||
|
|
||||||
#ifdef sparc
|
|
||||||
int TIMER_INTERVAL = 100000;
|
|
||||||
#else
|
|
||||||
int TIMER_INTERVAL = 25000;
|
int TIMER_INTERVAL = 25000;
|
||||||
#endif
|
|
||||||
|
|
||||||
extern int LispWindowFd;
|
extern int LispWindowFd;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user