1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 02:27:35 +00:00

WindowServer: Use CFile in the CPU monitor code.

This commit is contained in:
Andreas Kling 2019-04-18 00:12:04 +02:00
parent 34087a9f90
commit c4c7f224d5
2 changed files with 10 additions and 13 deletions

View file

@ -5,7 +5,11 @@
#include <stdio.h>
WSCPUMonitor::WSCPUMonitor()
: m_proc_all("/proc/all")
{
if (!m_proc_all.open(CIODevice::OpenMode::ReadOnly))
ASSERT_NOT_REACHED();
create_thread([] (void* context) -> int {
auto& monitor = *(WSCPUMonitor*)context;
for (;;) {
@ -31,18 +35,12 @@ void WSCPUMonitor::get_cpu_usage(unsigned& busy, unsigned& idle)
busy = 0;
idle = 0;
if (!m_fp)
m_fp = fopen("/proc/all", "r");
if (!m_fp) {
perror("failed to open /proc/all");
ASSERT_NOT_REACHED();
}
m_proc_all.seek(0);
for (;;) {
char buf[BUFSIZ];
char* ptr = fgets(buf, sizeof(buf), m_fp);
if (!ptr)
auto line = m_proc_all.read_line(BUFSIZ);
if (line.is_null())
break;
auto parts = String(buf, Chomp).split(',');
auto parts = String::from_byte_buffer(line).split(',');
if (parts.size() < 17)
break;
bool ok;
@ -56,8 +54,6 @@ void WSCPUMonitor::get_cpu_usage(unsigned& busy, unsigned& idle)
else
busy += nsched;
}
int rc = fseek(m_fp, 0, SEEK_SET);
ASSERT(rc == 0);
}
void WSCPUMonitor::paint(Painter& painter, const Rect& rect)