blob: 5d9cd032907d020bdbb19fb5134d548800ed4cd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* Copyright (c) 2021, Peter Elliott <pelliott@ualberta.ca>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/JsonObject.h>
#include <LibCore/File.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main()
{
if (pledge("stdio rpath", nullptr) < 0) {
perror("pledge");
return 1;
}
auto file = Core::File::construct("/proc/cpuinfo");
if (!file->open(Core::OpenMode::ReadOnly)) {
perror("Core::File::open()");
return 1;
}
auto json = JsonValue::from_string({ file->read_all() });
auto cpuinfo_array = json.value().as_array();
outln("{}", cpuinfo_array.size());
return 0;
}
|