From b4502969ad764a557fb6649ef9d73a1f7d6c1696 Mon Sep 17 00:00:00 2001 From: Costa Vitor Date: Wed, 19 Aug 2009 20:23:52 -0500 Subject: [PATCH] make types compatible. --- include/yap_structs.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/yap_structs.h b/include/yap_structs.h index e60e643d8..d009e5970 100644 --- a/include/yap_structs.h +++ b/include/yap_structs.h @@ -113,11 +113,11 @@ typedef struct { /* the next three fields only interest YAPOR, but we keep them so that users don't need to recompile DLL in order to use YAPOR */ /* if NON-0, number of workers we want to have (default=1) */ - int NumberWorkers; + unsigned long int NumberWorkers; /* if NON-0, manage the inner scheduler loop (default = 10) */ - int SchedulerLoop; + unsigned long int SchedulerLoop; /* if NON-0, say how long to keep nodes (default = 3) */ - int DelayedReleaseLoad; + unsigned long int DelayedReleaseLoad; /* end of YAPOR fields */ /* whether Prolog should handle interrupts */ int PrologShouldHandleInterrupts;