12.5 beep 以及 系统中的延时函数

应用层:
1.系统中的延时函数  头文件 #include <unistd.h>
    sleep(2)  
    功能:延时2 妙
    usleep()
    功能:延时微妙
2.#include _POSIC_C_SOURCE  199309
    #include <time.h>
    int  nanosleep(const struct timespec *req , struct timespec *rem)

    struct timespec{
        time_t tv_sec; //seconds 秒
        long tv_nsec; //nanoseconds 纳秒  范围[0 , 99999 9999]
    }
    功能:暂停某个线程 ,直到你规定的时间到后恢复状态;使其进入 TASK_INTERRUPTIBLE 状态;时间到 或者 被信号打断,进程 恢复为 TASK_RUNING 状态;若是被信号唤醒的 此时返回 -1,如果 定义的 rem 不为空,则剩余的时间存入 rem;

内核层:
1.#include <linux/delay.h>
     ndelay( )  //纳秒
     udelay( )  //微妙
    mdelay( ) // 毫秒

//**************************************************************************************************
系统中的响铃 分析

#include <curses.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <curses.h>

/*int main()
{
int i = 0;
for(i = 0; i < 10; i ++)
{
sleep(1);
fprintf(stdout,"\7");
fflush(stdout);     //这里 不加 fflush 只会在最后循环完的 时候 响一次铃
}
return 0;
}
*/

int main()   //这个不知道为什么不会响铃   在头文件中 包含了 include <curses.h>  编译:cc  *.c  -lcurses
{
while(1)
{
sleep(1);
printf("hao hao hao>>>>>>>>>>>>\n");
beep();
printf("hao are you....!");
}
}
    




    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值