ARM技术william hill官网
直播中

安德森大

8年用户 1290经验值
擅长:接口/总线/驱动
私信 关注
[问答]

ARM linux系统编程中常用的延时函数有哪些呢

系统编程中常用的延时函数:
sleep,usleep
内核编程中常用的延时函数
ndelay、udelay、mdelay
sleep:
unsigned int sleep(unsigned seconds);
//if sleep(x) return 0,means run ok
//if return y means run x-y seconds,and release y seconds
unsigned int usleep(useconds_t usec);
//if usleep(x) return 0,means run ok
//else return -1
下面写一个测试的c程序,直接交叉编译tftp下进去修改权限755或者777执行就ok
#include
#include
int main(void )
{
    int i=1000;
    while (1)
    {
        printf("printf startn");
        sleep(1);
        printf("1 second sleepn");
        usleep(1000000);
        printf("1000000 usecond sleepn");
    }
}
执行完是这样的:
[root@wly]# ./delay_ctl                                                                                      
printf start
1 second sleep
1000000 usecond sleep
printf start
1 second sleep
1000000 usecond sleep
printf start
1 second sleep

原作者:T触发器

更多回帖

发帖
×
20
完善资料,
赚取积分