X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fvars.c;h=21147fec5e873e3bebbe94e0797afd39a1346afb;hb=35ab27e7aab71c94aa6be12da15603c7fd87fca8;hp=4374c10573011f8eb4e893af6606a63503688fbd;hpb=28a6fdf5f4ef6c63e1631b27e2650d928b9ba62e;p=sbcl.git diff --git a/src/runtime/vars.c b/src/runtime/vars.c index 4374c10..21147fe 100644 --- a/src/runtime/vars.c +++ b/src/runtime/vars.c @@ -29,7 +29,7 @@ struct var { lispobj obj; lispobj (*update_fn)(struct var *var); char *name; - long clock; + sword_t clock; boolean map_back, permanent; struct var *nnext; /* Next in name list */ @@ -38,7 +38,7 @@ struct var { static int hash_name(char *name) { - unsigned long value = 0; + uword_t value = 0; while (*name != '\0') { value = (value << 1) ^ *(unsigned char *)(name++); @@ -50,7 +50,7 @@ static int hash_name(char *name) static int hash_obj(lispobj obj) { - return (unsigned long)obj % OBJ_BUCKETS; + return (uword_t)obj % OBJ_BUCKETS; } void flush_vars() @@ -155,7 +155,7 @@ struct var *define_var(char *name, lispobj obj, boolean perm) } struct var *define_dynamic_var(char *name, lispobj updatefn(struct var *), - boolean perm) + boolean perm) { struct var *var = make_var(name, perm); @@ -176,12 +176,12 @@ lispobj var_value(struct var *var) return var->obj; } -long var_clock(struct var *var) +sword_t var_clock(struct var *var) { return var->clock; } -void var_setclock(struct var *var, long val) +void var_setclock(struct var *var, sword_t val) { var->clock = val; }