codecamp

noidle

 原型:extern void noidle(void);
             
 用法:#include <system.h>
 
 功能:调用系统例程
 
 说明:文曲星是单任务系统,为防止应用程序占用过多的系统时间而影响系统程序的执行
       同时也为了防止个别程序崩溃而造成系统无法启动,文曲星内核在中断到来时会检
       测应用程序所执行的时间,如果在4秒内系统程序没有得到运行,则中断程序将强迫
       文曲星进入睡眠状态,即所谓的死机。
       因此,当程序运算时间过长(一般为循环过程)时,请调用noidle来防止系统关机。

 举例:

     // noidle.c
     
     #include <system.h>
     main()
     {
       int i,j;
       clrscr();
       printf("Waiting...\n");
       for(i=0;i<10;i++)
         for(j=0;j<32767;j++)
         {
           noidle();
         }
       
       printf("System Shutdown?");
       
       getchar();
       return 0;
     }


line
gotoxy,move
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

alloi动态内存

stdio输入输出函数

stdlib基础库函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }