一个项目需要,特地写了这些功能的函数。
process_stat.h的内容如下:
/** @file
* @brief 进程统计信息函数的声明
* @author 张亚霏
* @date 2009/05/03
* @version 0.1
*
*/
#ifndef PROCESS_STAT_H
#define PROCESS_STAT_H
#ifdef __cplusplus
extern "C" {
#endif
typedef long long int64_t;
typedef unsigned long long uint64_t;
/// 获取当前进程的cpu使用率,返回-1失败
int get_cpu_usage();
/// 获取当前进程内存和虚拟内存使用量,返回-1失败,0成功
int get_memory_usage(uint64_t* mem, uint64_t* vmem);
/// 获取当前进程总共读和写的IO字节数,返回-1失败,0成功
int get_io_bytes(uint64_t* read_bytes, uint64_t* write_bytes);
#ifdef __cplusplus
}
#endif
#endif/*PROCESS_STAT_H*/
process_stat_win.c的内容如下:
/** @file
* @brief 进程统计信息函数的实现
* @author 张亚霏
* @date 2009/05/03
* @version 0.1
*
* 部分代码来自MSDN的例子
* 部分代码来自google chromium项目
*
* 需要连接到psapi.lib
*/
#include <windows.h>
#include <psapi.h>
#include <assert.h>
#include "process_stat.h"
/// 时间转换
static uint64_t file_time_2_utc(const FILETIME* ftime)
{
LARGE_INTEGER li;
assert(ftime);
li.LowPart = ftime->dwLowDateTime;
li.HighPart = ftime->dwHighDateTime;
return li.QuadPart;
}
/// 获得CPU的核数
static int get_processor_number()
{
SYSTEM_INFO info;
GetSystemInfo(&info);
return (int)info.dwNumberOfProcessors;
}
int get_cpu_usage()
{
//cpu数量
static int processor_count_ = -1;
//上一次的时间
static int64_t last_time_ = 0;
static int64_t last_system_time_ = 0;
FILETIME now;
FILETIME creation_time;
FILETIME exit_time;
FILETIME kernel_time;
FILETIME user_time;
int64_t system_time;
int64_t time;
int64_t system_time_delta;
int64_t time_delta;
int cpu = -1;
if(processor_count_ == -1)
{
processor_count_ = get_processor_number();
}
GetSystemTimeAsFileTime(&now);
if (!GetProcessTimes(GetCurrentProcess(), &creation_time, &exit_time,
&kernel_time, &user_time))
{
// We don't assert here because in some cases (such as in the Task
Manager)
// we may call this function on a process that has just exited but
we have
// not yet received the notification.
return -1;
}
system_time = (file_time_2_utc(&kernel_time) + file_time_2_utc(&user_time))
/
processor_count_;
time = file_time_2_utc(&now);
if ((last_system_time_ == 0) || (last_time_ == 0))
{
// First call, just set the last values.
last_system_time_ = system_time;
last_time_ = time;
return -1;
}
system_time_delta = system_time - last_system_time_;
time_delta = time - last_time_;
assert(time_delta != 0);
if (time_delta == 0)
return -1;
// We add time_delta / 2 so the result is rounded.
cpu = (int)((system_time_delta * 100 + time_delta / 2) / time_delta);
last_system_time_ = system_time;
last_time_ = time;
return cpu;
}
int get_memory_usage(uint64_t* mem, uint64_t* vmem)
{
PROCESS_MEMORY_COUNTERS pmc;
if(GetProcessMemoryInfo(GetCurrentProcess(), &pmc, sizeof(pmc)))
{
if(mem) *mem = pmc.WorkingSetSize;
if(vmem) *vmem = pmc.PagefileUsage;
return 0;
}
return -1;
}
int get_io_bytes(uint64_t* read_bytes, uint64_t* write_bytes)
{
IO_COUNTERS io_counter;
if(GetProcessIoCounters(GetCurrentProcess(), &io_counter))
{
if(read_bytes) *read_bytes = io_counter.ReadTransferCount;
if(write_bytes) *write_bytes = io_counter.WriteTransferCount;
return 0;
}
return -1;
}
可以这样使用:
/** @file
* @brief 进程统计信息函数的测试
* @author 张亚霏
* @date 2009/05/03
* @version 0.1
*
*/
#include "process_stat.h"
#include <stdio.h>
#include <Windows.h>
int main()
{
while(1)
{
int cpu;
uint64_t mem, vmem, r, w;
cpu = get_cpu_usage();
get_memory_usage(&mem, &vmem);
get_io_bytes(&r, &w);
printf("CPU使用率: %u\n",cpu);
printf("内存使用: %u 字节\n", mem);
printf("虚拟内存使用: %u 字节\n", vmem);
printf("总共读: %u 字节\n", r);
printf("总共写: %u 字节\n", w);
Sleep(1000);
}
return 0;
}
分享到:
相关推荐
在Windows操作系统中,使用C语言获取进程的CPU使用率、内存使用情况以及I/O状态是一项基本的任务,这对于系统监控、性能分析以及优化程序性能都至关重要。以下是对这些知识点的详细解释: 1. **CPU使用率**: CPU...
以上就是使用Psapi库在Windows下用C语言获取进程CPU使用率和内存使用情况的详细步骤。通过深入理解和实践这些知识点,开发者可以更好地监控和管理自己的应用程序,优化性能,以及解决与资源使用相关的各种问题。
linux c程序获取cpu使用率及内存使用情况
平台:linux。 语言:c。 功能:查看当前系统cpu使用率(可多核),1秒刷新一次。
使用VB C语言 获取电脑CPU使用率,小巧实用,小内存使用,堪比鲁大师(说笑而已),完全代码公开,全解注释,直接F5运行,完全自己手动编写,适合有兴趣的猿员人们研究,桌面显示实时监控!!CPU使用率源代码,CPU使用...
在C++编程中,获取指定线程的CPU使用率是一项重要的任务,这有助于优化程序性能,监测系统资源消耗。本文将详细介绍如何通过C++来实现这一功能。 首先,我们需要理解CPU使用率的基本概念。CPU使用率是衡量处理器在...
在Windows环境下,我们可以使用`CreateToolhelp32Snapshot`函数来获取进程信息,然后通过`Process32First`和`Process32Next`遍历所有进程,统计CPU和内存的占用情况。CPU使用率可以通过获取当前进程的时间片使用量与...
C/C++实现linux和Windows查看系统、进程、服务的内存和CPU使用情况的源代码,生成的是静态链接库,Windows和Linux下经测试都可用,查看系统、指定名称的服务、指定名称的进程占用CPU和内存,查看方式不是通过程序中...
在本文中,我们将深入探讨如何使用C语言在Windows操作系统中检测CPU温度。C语言是一种强大的、通用的编程语言,能够直接与系统硬件交互,因此非常适合进行底层系统编程,如CPU温度监测。 首先,我们需要理解CPU温度...
要获取进程的 CPU 使用率,我们需要使用 Windows API 中的 GetProcessTimes 函数,该函数可以获取进程的执行时间和系统时间。我们可以通过计算这两个时间的差值来获取进程的 CPU 使用率。 二、C++ 实现代码 我们将...
本项目专注于使用C#编程语言实现一个任务管理器功能,特别关注于获取CPU占用率较高的前三个进程,这对于识别系统性能瓶颈、优化资源分配以及诊断潜在问题具有重要价值。 首先,我们要理解CPU占用率的概念。CPU占用...
在C语言中,获取CPU序列号通常涉及到调用操作系统提供的API或者使用汇编语言访问CPU的特殊寄存器。在这个项目中,可能使用了`cpuid`指令来查询CPU信息,该指令可以访问CPU内部的ID寄存器,从中提取序列号。 2. **...
在Linux操作系统中,编写C程序来获取CPU使用率和内存使用情况是通过读取特定的系统文件完成的,这些文件位于`/proc`目录下。`/proc`是一个虚拟文件系统,它提供了关于系统状态的实时信息。以下是如何通过C程序实现这...
【标题】"WMI-64- c语言 获取 CPU序列号 CPUID,硬盘序列号 支持64位编译" 提供了一种在64位环境下使用C语言获取CPU序列号和硬盘序列号的方法。这种方法是通过Windows Management Instrumentation(WMI)技术实现的...
本篇文章将深入探讨如何使用C语言来获取CPU的标识符(CPUID)以及网络适配器的物理地址(MAC地址)。C语言作为底层编程的基础,其简洁且强大的特性使得它成为获取这些硬件信息的理想选择。 首先,我们要理解CPUID。...
本文将详细讲解如何使用C语言在Linux和Windows操作系统下获取CPU序列号、硬盘序列号以及网卡的相关信息,如网卡名称、IP地址、MAC地址和网络连接状态。 首先,让我们关注CPU序列号的获取。在Windows系统中,可以...
本文将详细讨论如何使用C语言在Linux和Windows操作系统中获取CPU序列号、硬盘序列号、网卡信息(包括网卡名称、IP地址、MAC地址以及网络连接状态)。 首先,我们来探讨CPU序列号的获取。在Windows系统中,可以使用...
使用C语言获取windows操作系统的MAC列表,已实测可以运行
在C语言中获取屏幕刷新率涉及到操作系统和硬件接口的交互,尤其是对于Windows系统,通常需要使用Windows API函数来实现。下面将详细阐述如何通过C语言来获取屏幕的刷新率。 首先,我们需要理解屏幕刷新率的原理。...
采用C语言实现,获取服务器指定网卡的网络流量并计算单位时间的网速,从而计算相应网卡的带宽占用率。