1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-14 07:30:21 +00:00

Alarm timer requires an unsigned timeout value in timer.c, timeout.h

This commit is contained in:
Nick Briggs 2022-08-14 12:50:16 -07:00
parent c49eb4a4ce
commit ad045ce356
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ extern jmp_buf jmpbuf;
/*** TIMEOUT_TIME is changeable by UNIX env var LDEFILETIMEOUT.
#define TIMEOUT_TIME 10 **/
extern int TIMEOUT_TIME;
extern unsigned int TIMEOUT_TIME;
#define SETJMP(x) \
{ \

View File

@ -87,7 +87,7 @@ extern DspInterface currentdsp;
* to get Alto time.
*/
int TIMEOUT_TIME = 10; /* For file system timeout, seconds, default 10 */
unsigned int TIMEOUT_TIME = 10; /* For file system timeout, seconds, default 10 */
volatile sig_atomic_t IO_Signalled = FALSE;