一、前言linux
時間對操做系統來講很是重要,從內核級到應用層,時間的表達方式及精度各部相同。linux內核裏面用一個名爲jiffes的常量來計算時間戳。應用層有time、getdaytime等函數。今天須要在應用程序獲取系統的啓動時間,百度了一下,經過sysinfo中的uptime能夠計算出系統的啓動時間。函數
二、sysinfo結構post
sysinfo結構保持了系統啓動後的信息,主要包括啓動到如今的時間,可用內存空間、共享內存空間、進程的數目等。man sysinfo獲得結果以下所示:測試
1 struct sysinfo { 2 long uptime; /* Seconds since boot */ 3 unsigned long loads[3]; /* 1, 5, and 15 minute load averages */ 4 unsigned long totalram; /* Total usable main memory size */ 5 unsigned long freeram; /* Available memory size */ 6 unsigned long sharedram; /* Amount of shared memory */ 7 unsigned long bufferram; /* Memory used by buffers */ 8 unsigned long totalswap; /* Total swap space size */ 9 unsigned long freeswap; /* swap space still available */ 10 unsigned short procs; /* Number of current processes */ 11 char _f[22]; /* Pads structure to 64 bytes */ 12 };
三、獲取系統啓動時間spa
經過sysinfo獲取系統啓動到如今的秒數,用當前時間減去這個秒數即系統的啓動時間。程序以下所示:操作系統
1 #include <stdio.h> 2 #include <sys/sysinfo.h> 3 #include <time.h> 4 #include <errno.h> 5 6 static int print_system_boot_time() 7 { 8 struct sysinfo info; 9 time_t cur_time = 0; 10 time_t boot_time = 0; 11 struct tm *ptm = NULL; 12 if (sysinfo(&info)) { 13 fprintf(stderr, "Failed to get sysinfo, errno:%u, reason:%s\n", 14 errno, strerror(errno)); 15 return -1; 16 } 17 time(&cur_time); 18 if (cur_time > info.uptime) { 19 boot_time = cur_time - info.uptime; 20 } 21 else { 22 boot_time = info.uptime - cur_time; 23 } 24 ptm = gmtime(&boot_time); 25 printf("System boot time: %d-%-d-%d %d:%d:%d\n", ptm->tm_year + 1900, 26 ptm->tm_mon + 1, ptm->tm_mday, ptm->tm_hour, ptm->tm_min, ptm->tm_sec); 27 return 0; 28 } 29 30 int main() 31 { 32 if (print_system_boot_time() != 0) { 33 return -1; 34 } 35 return 0; 36 }
測試結果以下所:code