Re: PATCH: time is ulong

Tim Schmielau (tim@physik3.uni-rostock.de)
Fri, 21 Mar 2003 23:08:04 +0100 (CET)


> -#define INITIAL_JIFFIES ((unsigned int) (-300*HZ))
> +#define INITIAL_JIFFIES ((unsigned long) (-300*HZ))

No. This was deliberate since testing 32 bit jiffies wrap seems more
beneficial than testing 64 bit jiffies.
Just the formulation might be misleading, which is why I initially wrote
#define INITIAL_JIFFIES (0xffffffffUL & (unsigned long)(-300*HZ))

Tim

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/