On Thu, 14 Jul 2005, john stultz wrote: > > We'll I'd probably put it as: "they do care about absolute time, but > they do not care about ticks or timer interrupt frequency"
Well, the thing is, you have to count time some sane way. You can do it by having very expensive data structures that say "real time", but then you have some serious confusion when it comes to things like whether it's wallclock time (which might have shifts and other interesting issues) or some "virtual cpu time". You also end up having a much much more expensive interface, ie "time_after()" ends up being a much more complicated test. So the _sane_ way to do timeouts is to define an _arbitrary_ clock that is just an integer counter. None of this "nanoseconds + full seconds" crap. None of this stupid confusion with "real time". You select something that is conceptually _clearly_ somethign else, and that will never get confused when root sets the time backwards or anything like that. In other words, you select the thing we call "jiffies". Face it, it is just _superior_ to the alternatives. The alternative is to have some "fake time" aka "struct timespec", and always have to worry about normalization and complicated comparisons, and using more memory too, btw. There is no way to avoid having some kind of counter to specify time. NONE. The only choice is what you base your notion of time on, and how you represent it. Do you represent it as two separate counters and try to make it look like "fractions of seconds", or do you represent it as a single counter, and make it look like "ticks". And the single counter is _simpler_. The alternatives have absolutely _zero_ upsides. Name _one_. Linus - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/