主頁(yè) > 知識(shí)庫(kù) > 程序中獲取linux系統(tǒng)啟動(dòng)時(shí)間方法

程序中獲取linux系統(tǒng)啟動(dòng)時(shí)間方法

熱門標(biāo)簽:河南信譽(yù)好的不封卡電話外呼系統(tǒng) 如果做線上地圖標(biāo)注 客服外呼系統(tǒng)怎么樣 百度地圖標(biāo)注錯(cuò)了有責(zé)任嗎 地圖標(biāo)注員都是年輕人 揭陽(yáng)智能電話機(jī)器人推薦 江蘇云電銷機(jī)器人公司 華鋒e路航港口地圖標(biāo)注 打電話機(jī)器人接我是他的秘書(shū)

1、前言

時(shí)間對(duì)操作系統(tǒng)來(lái)說(shuō)非常重要,從內(nèi)核級(jí)到應(yīng)用層,時(shí)間的表達(dá)方式及精度各部相同。linux內(nèi)核里面用一個(gè)名為jiffes的常量來(lái)計(jì)算時(shí)間戳。應(yīng)用層有time、getdaytime等函數(shù)。今天需要在應(yīng)用程序獲取系統(tǒng)的啟動(dòng)時(shí)間,通過(guò)sysinfo中的uptime可以計(jì)算出系統(tǒng)的啟動(dòng)時(shí)間。

2、sysinfo結(jié)構(gòu)

sysinfo結(jié)構(gòu)保持了系統(tǒng)啟動(dòng)后的信息,主要包括啟動(dòng)到現(xiàn)在的時(shí)間,可用內(nèi)存空間、共享內(nèi)存空間、進(jìn)程的數(shù)目等。man sysinfo得到結(jié)果如下所示:

復(fù)制代碼 代碼如下:

 struct sysinfo {
                long uptime;             /* Seconds since boot */
                unsigned long loads[3];  /* 1, 5, and 15 minute load averages */
                unsigned long totalram;  /* Total usable main memory size */
                unsigned long freeram;   /* Available memory size */
                unsigned long sharedram; /* Amount of shared memory */
                unsigned long bufferram; /* Memory used by buffers */
                unsigned long totalswap; /* Total swap space size */
                unsigned long freeswap;  /* swap space still available */
               unsigned short procs;    /* Number of current processes */
               char _f[22];             /* Pads structure to 64 bytes */

3、獲取系統(tǒng)啟動(dòng)時(shí)間

通過(guò)sysinfo獲取系統(tǒng)啟動(dòng)到現(xiàn)在的秒數(shù),用當(dāng)前時(shí)間減去這個(gè)秒數(shù)即系統(tǒng)的啟動(dòng)時(shí)間。程序如下所示:

復(fù)制代碼 代碼如下:

 #include stdio.h>
 #include sys/sysinfo.h>
 #include time.h>
 #include errno.h>

 static int print_system_boot_time()
 {
     struct sysinfo info;
     time_t cur_time = 0;
    time_t boot_time = 0;
    struct tm *ptm = NULL;
    if (sysinfo(info)) {
    fprintf(stderr, "Failed to get sysinfo, errno:%u, reason:%s\n",
        errno, strerror(errno));
    return -1;
    }
    time(cur_time);
    if (cur_time > info.uptime) {
    boot_time = cur_time - info.uptime;
    }
    else {
    boot_time = info.uptime - cur_time;
    }
    ptm = gmtime(boot_time);
    printf("System boot time: %d-%-d-%d %d:%d:%d\n", ptm->tm_year + 1900,
        ptm->tm_mon + 1, ptm->tm_mday, ptm->tm_hour, ptm->tm_min, ptm->tm_sec);
   return 0;
}

int main()
{
    if (print_system_boot_time() != 0) {
    return -1;
    }
    return 0;
}


測(cè)試結(jié)果如下所:

您可能感興趣的文章:
  • Linux 按時(shí)間批量刪除文件命令(刪除N天前文件)
  • Linux下date命令,格式化輸出,時(shí)間設(shè)置方法
  • Linux下用C獲取當(dāng)前時(shí)間
  • 解析Linux下的時(shí)間函數(shù):設(shè)置以及獲取時(shí)間的方法
  • Linux date 時(shí)間設(shè)置同步命令分享
  • 設(shè)置Linux系統(tǒng)的空閑等待時(shí)間TMOUT的方法
  • 詳解linux ntp服務(wù)器時(shí)間同步設(shè)置
  • Linux/Unix關(guān)于時(shí)間和時(shí)間戳的命令行
  • linux獲取進(jìn)程執(zhí)行時(shí)間方法示例
  • Linux時(shí)間子系統(tǒng)之時(shí)間的表示示例詳解

標(biāo)簽:馬鞍山 邵陽(yáng) 許昌 淘寶邀評(píng) 巴彥淖爾 金昌 婁底 赤峰

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《程序中獲取linux系統(tǒng)啟動(dòng)時(shí)間方法》,本文關(guān)鍵詞  程序,中,獲取,linux,系統(tǒng),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《程序中獲取linux系統(tǒng)啟動(dòng)時(shí)間方法》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于程序中獲取linux系統(tǒng)啟動(dòng)時(shí)間方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章