- 論壇徽章:
- 0
|
在編寫(xiě)驅(qū)動(dòng)是不能直接用如下的方法判斷是否時(shí)間到的:
unsigned long timeout = jiffies + HZ/2;
if(timeout
int main(void)
{
char i = -10;
char j = -20;
char k = 4;
unsigned char time1 = 256;
unsigned char time2 = 234;
printf("i is: 0x%x, j is: 0x%x, k is: 0x%x, -1 is: 0x%x, -0 is: 0x%x\n",
(unsigned char)i, (unsigned char)j, (unsigned char)k, (unsigned char)-1, (unsigned char)-0);
printf("(char)time1 -(char)time2 is: %d\n", (char)time1 - (char)time2);
printf("time1 - time2 is: %d\n", time1 - time2);
return 0;
}
這段函數(shù)運(yùn)行結(jié)果是:
i is: 0xf6, j is: 0xec, k is: 0x4, -1 is: 0xff, -0 is: 0x0
(char)time1 -(char)time2 is: 22
time1 - time2 is: -234
可以看出, time_before time_after巧妙的利用了負(fù)數(shù)的補(bǔ)碼表示
本文來(lái)自ChinaUnix博客,如果查看原文請(qǐng)點(diǎn):http://blog.chinaunix.net/u/21422/showart_399525.html |
|