In message <[EMAIL PROTECTED]> Kenneth Wayne 
Culver writes:
: For some reason rtc0 was not working, and I think it's because this
: variable was not initialized, here is the patch:
: -int  statclock_disable;
: +int  statclock_disable = 0;

There is no difference between these two statements (well, other than
statclock_disable moves from the bss area, which is zeroed, to a
location in .data, which is zeroed).

This cannot be the problem, although it may appear to fix it.  It may
be the case that some other buffer is overflowing into this.

Warner


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message
  • rtc0 Kenneth Wayne Culver

Reply via email to