You would be better off using the latest version of LiS -- 2.16.10.
At 02:05 PM 6/4/2003 Wednesday, Brian F. G. Bidulock wrote:
Eugene,
You should be including the kernel header <linux/time.h> in a driver rather than the user glibc header <sys/time.h>.
I checked: 'lbolt' does not exist in either.
The analogous thing in Linux is "jiffies".
If you need time.h include it before stream.h as follows:
#include <linux/time.h> #include <sys/stream.h>
I usually include <sys/stream.h> as the first thing because Linux include file families are fairly delicate sometimes and <sys/stream.h> has things in a kind of balance. Sometimes the includes can clash if you include kernel includes prior to <sys/stream.h>. Or sometimes it will work on this version of the kernel, but not on that version.
-- Dave
_______________________________________________ Linux-streams mailing list [EMAIL PROTECTED] http://gsyc.escet.urjc.es/mailman/listinfo/linux-streams
