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:
parent
c49eb4a4ce
commit
ad045ce356
@ -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) \
|
||||
{ \
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user