linux下定時器timer_create()的使用
一、採用新執行緒派駐的方式 (注: 編譯時 需加上 -lrt)
#include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <signal.h> #include <time.h> #include <error.h> #include <errno.h> #include <string.h> void timer_thread(union sigval v) { printf("timer_thread function! %d\n", v.sival_int); } int init_timer(timer_t *timerid, struct sigevent *evp, struct itimerspec *it) { if ( !evp || !it ) return -1; memset(evp, 0, sizeof(struct sigevent)); //清零初始化 evp->sigev_value.sival_int = 111; //也是標識定時器的,這和timerid有什麼區別?回撥函式可以獲得 evp->sigev_notify = SIGEV_THREAD; //執行緒通知的方式,派駐新執行緒 evp->sigev_notify_function = timer_thread; //執行緒函式地址 if (timer_create(CLOCK_REALTIME, evp, timerid) == -1) { perror("fail to timer_create"); return -1;; } printf("timer_create timerid = %d\n", *timerid); it->it_interval.tv_sec = 1; // 後續按照該時間間隔 it->it_interval.tv_nsec = 0; it->it_value.tv_sec = 3; // 最初開始時間間隔 it->it_value.tv_nsec = 0; return 0; } int start_timer(timer_t *timerid, struct itimerspec *it) { if (it == NULL){ return -1; } if (timer_settime(*timerid, 0, it, NULL) == -1) { perror("fail to timer_settime"); return -1; } return 0; } void thread_func(void *param) { int *a = (int *)param; while(1){ sleep(1); printf("This is thread..\n"); } *a = 100; printf("param = %d\n", *a); } int main(int argc, const char *argv[]) { pid_t pid = 0; pthread_t thread; timer_t timerid = 0; int ret; struct sigevent evp; struct itimerspec it; int a = 10; #if 0 int ret = init_timer(&timerid, &evp, &it); if (ret < 0){ printf("init_timer failed\n"); return -1; } #endif if ((pid = fork()) < 0) { printf("fork failed.\n"); return -1; } else if ( pid == 0){ printf("child proc..\n"); ret = pthread_create(&thread, NULL, thread_func, &a); int ret = init_timer(&timerid, &evp, &it); if (ret < 0){ printf("init_timer failed\n"); return -1; } sleep(2); printf("child timer_Id addr = %d\n", timerid); start_timer(&timerid, &it); sleep(10); exit(0); } else{ printf("I'm parent proc..\n"); printf("parent timer_Id addr = %d\n", timerid); printf("pthread_id = %d\n", thread); do { ret = waitpid(pid, NULL, WNOHANG); if (ret == 0){ printf("No child exit\n"); sleep(2); } else if (ret == pid){ printf("Successly get child %d\n", pid); } else printf("something error\n"); }while(ret == 0); /*ret = waitpid(pid, NULL, 0);*/ /*if (ret == pid)*/ /*printf("successly get child %d\n", pid);*/ } pause(); return 0; }
二、採用通知方式為訊號(signal)的處理方式
#include<stdio.h> #include<signal.h> #include<time.h> #include<string.h> void handle() { time_t t; char p[32]; time(&t); strftime(p, sizeof(p), "%T", localtime(&t)); printf("time is %s\n", p); } int main() { struct sigevent evp; struct itimerspec ts; timer_t timer; int ret; memset(&evp, 0, sizeof(struct sigevent)); evp.sigev_value.sival_ptr = &timer; evp.sigev_notify = SIGEV_SIGNAL; evp.sigev_signo = SIGUSR1; signal(SIGUSR1, handle); ret = timer_create(CLOCK_REALTIME, &evp, &timer); if( ret ) perror("timer_create"); ts.it_interval.tv_sec = 1; ts.it_interval.tv_nsec = 0; ts.it_value.tv_sec = 3; ts.it_value.tv_nsec = 0; ret = timer_settime(timer, 0, &ts, NULL); if( ret ) perror("timer_settime"); while(1); }
訊號為signaction處理函式 :
#include <stdio.h> #include <time.h> #include <stdlib.h> #include <signal.h> #include <string.h> #include <unistd.h> #define CLOCKID CLOCK_REALTIME void sig_handler(int signo) { printf("timer_signal function! %d\n", signo); } int main() { //XXX int sigaction(int signum, const struct sigaction *act, struct sigaction *oldact); // signum--指定的訊號編號,可以指定SIGKILL和SIGSTOP以外的所有訊號編號 // act結構體--設定訊號編號為signum的處理方式 // oldact結構體--儲存上次的處理方式 // // struct sigaction // { // void (*sa_handler)(int); //訊號響應函式地址 // void (*sa_sigaction)(int, siginfo_t *, void *); //但sa_flags為SA——SIGINFO時才使用 // sigset_t sa_mask; //說明一個訊號集在呼叫捕捉函式之前,會加入程序的遮蔽中,當捕捉函式返回時,還原 // int sa_flags; // void (*sa_restorer)(void); //未用 // }; // timer_t timerid; struct sigevent evp; struct sigaction act; memset(&act, 0, sizeof(act)); act.sa_handler = sig_handler; act.sa_flags = 0; // XXX int sigaddset(sigset_t *set, int signum); //將signum指定的訊號加入set訊號集 // XXX int sigemptyset(sigset_t *set); //初始化訊號集 sigemptyset(&act.sa_mask); if (sigaction(SIGUSR1, &act, NULL) == -1) { perror("fail to sigaction"); exit(-1); } memset(&evp, 0, sizeof(struct sigevent)); evp.sigev_signo = SIGUSR1; evp.sigev_notify = SIGEV_SIGNAL; if (timer_create(CLOCK_REALTIME, &evp, &timerid) == -1) { perror("fail to timer_create"); exit(-1); } struct itimerspec it; it.it_interval.tv_sec = 2; it.it_interval.tv_nsec = 0; it.it_value.tv_sec = 1; it.it_value.tv_nsec = 0; if (timer_settime(timerid, 0, &it, 0) == -1) { perror("fail to timer_settime"); exit(-1); } pause(); return 0; }
相關推薦
linux下定時器timer_create()的使用
一、採用新執行緒派駐的方式 (注: 編譯時 需加上 -lrt)#include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <signal.h> #inc
linux下定時器的使用--timer_create等函數集
rest eat 處理 stdio.h lag fin handle 之前 reat 程序1:采用新線程派駐的通知方式 程序2:通知方式為信號的處理方式 #include <stdio.h>#include <time.h>#include <
linux下定時器的使用--timer_create等系列
程式1:採用新執行緒派駐的通知方式 #include <stdio.h> #include <signal.h> #include <time.h> #include <string.h> #include <stdli
Linux下定時器的設定
1. alarm函式 [1] 引用標頭檔案:#include <unistd.h>; [2] 函式標準式:unsigned int alarm(unsigned int seconds); [3] 功能與作用:alarm()函式的主要功能是設定訊號傳送
linux下定時器setitimer的使用
1,下面為setitimer函式引數: int setitimer(int which, const struct itimerval *value, struct itimerval *ovalue)); 第一個引數int switch為設定定時器型別:
Linux下定時器的實現方式分析
級別: 初級 趙 軍 ([email protected]), 開發工程師, Pixelworks 2009 年 10 月 31 日 定時器屬於基本的基礎元件,不管是使用者空間的程式開發,還是核心空間的程式開發,很多時候都需要有定時器作為基礎元件的支援,
Linux POSIX 定時器 (timer_create)
#include <stdlib.h> #include <unistd.h> #include <stdio.h> #include <signal.h> #include <time.h> #include <string.h&
windows和Linux下定時啟動或關閉服務
ref sta article start 處理程序 window pin blog win http://blog.csdn.net/clare504/article/details/17410643 1、Windows下的定時啟動程序可以采用系統的計劃和任務,定時
Linux crontab定時器設置(定期執行java程序)(轉)
在那 安裝 一次 tin 文件名 ani data 說明 ive Crontab 語法 Crontab語法一個crontab文件用五個段來定義:天,日期和時間,和一個要定期執行的命令代碼。 * * * * * command to be execut
linux下定時任務crontab
每一個 usr mil 不同 local soft mic 情況下 設備 CRONTAB概念/介紹 crontab命令用於設置周期性被執行的指令。該命令從標準輸入設備讀取指令,並將其存放於“crontab”文件中,以供之後讀取和執行。 cr
Linux Timer定時器【轉】
support block 相對 art get ring nis 是的 data- 轉自:https://www.jianshu.com/p/66b3c75cae81 timerfd為Linux為用戶程序提供的定時器接口,該接口基於文件描述符,通過文
linux下定時任務計劃的使用
pool echo 分鐘 bash copy 任務計劃 單引號 example 情況 一、定時任務之at實現; PS:本次操作以CentOS 7.5為實驗環境; 1.1、at軟件包說明 最小化安裝,可能沒有at或atq這個命令,at來自於軟件包at,如果yum能用,直
linux crond 定時器
檢視狀態 service crond status 開機啟動 #檢視狀態 systemctl status crond #設為開機啟動 systemctl enable crond #啟動crond服務 systemctl start cron
linux核心定時器 記錄
驅動程式中使用timer的幾個必要的操作 1.分配 static struct timer_list pwm_timer; 2.設定、新增 pwm_timer.function = pwm_timer_function; pwm_timer.expires = jiffies
linux 下 定時任務
crontab -e 新建/編輯一個任務 crontab -l 列出所有任務 crontab 格式: 基本格式 : * * * * * command 分鐘 小時 日 月 星期 命令 第1列表示分鐘1~59 每分鐘用 */1表示 第2列表示小時1~23(0表示0點
Linux下定時備份文件與ssc平臺出租
mtime 刪除 date fin 保存 命令 exec 一個 打包 一、 編寫腳本編寫一個腳本文件,ssc平臺出租《企鵝21717 93408》使腳本可以執行備份命令。?例如,將文件目錄 /home/backups/balalala 備份到/home目錄下,並壓縮。
【python linux下定時任務跑】crontab -e使用
/etc/crontab 就是crontab 的配置檔案 linux 下輸入命令 crontab -l 查詢當前系統使用者設定了哪些執行任務 linux 下輸入命令 crontab -r 清空當前系統使用者設定的所有任務 linux 下輸入命令 crontab -e 編輯和設定當前系統使用者要
Linux下定時任務的檢視及取消
原文地址:http://changwu0101.blog.163.com/blog/static/1104246392011820104654131/ $ crontab --help crontab:無效選項 -- - crontab: usage error: unrecognized option u
POSIX定時器timer_create,timer_settime
POSIX定時器的是為了解決間隔定時器itimer的以下問題: 一個程序同一時刻只能有一個同一種類型(ITIMER_REAL, ITIMER_PROF, ITIMER_VIRT)的itimer。POSIX定時器在一個程序中可以建立任意多個timer。 itimer定時器到
Linux下定時備份資料庫
1.建立備份使用者 create user 'db_backup'@'%' identified by 'db_backup_password'; -- 賦zd_setmeal庫只讀許可權 grant