disable

disable

disable,英語單詞,也有C語言函式disable。

基本介紹

  • 中文名:使失去能力
  • 外文名:disable
  • 音標:[dis'eibl]
  • 類型:vt.
單詞,C函式,

單詞

disable[dis'eibl]vt.
1. 使失去能力[(+from)]
2. 使傷殘[H]
He was disabled in the accident.
他在那次事故中成了殘廢。
3. 【律】使無資格[(+from)]
He is disabled from voting.
他失去了選舉資格。

C函式

函式名: disable
功 能: 禁止中斷
用 法: void disable(void);
程式例:
/***NOTE: This is an interrupt service
routine. You cannot compile this program
with Test Stack Overflow turned on and
get an executable file that operates
correctly. */
#include <stdio.h>#include <dos.h>#include <conio.h>#define INTR 0X1C    /* The clock tickinterrupt */void interrupt ( *oldhandler)(void);int count=0;void interrupt handler(void){/* disable interrupts during the handling ofthe interrupt */disable();/* increase the global counter */count++;/* reenable interrupts at the end of thehandler */enable();/* call the old routine */oldhandler();}
int main(void){/* save the old interrupt vector */oldhandler = getvect(INTR);/* install the new interrupt handler */setvect(INTR, handler);/* loop until the counter exceeds 20 */while (count < 20)printf("count is %d\n",count);/* reset the old interrupt handler */setvect(INTR, oldhandler);return 0;}

相關詞條

熱門詞條

聯絡我們