Date: Sun, 12 Dec 1999 00:06:30 -0700 From: Warner Losh <imp@village.org> To: Kenneth Wayne Culver <culverk@wam.umd.edu> Cc: freebsd-current@FreeBSD.ORG Subject: Re: rtc0 Message-ID: <199912120706.AAA37029@harmony.village.org> In-Reply-To: Your message of "Sat, 11 Dec 1999 20:05:40 EST." <Pine.GSO.4.10.9912112000430.17115-100000@rac9.wam.umd.edu> References: <Pine.GSO.4.10.9912112000430.17115-100000@rac9.wam.umd.edu>
next in thread | previous in thread | raw e-mail | index | archive | help
In message <Pine.GSO.4.10.9912112000430.17115-100000@rac9.wam.umd.edu> 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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199912120706.AAA37029>