2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
2021-09-11 12:20:47 +03:00
|
|
|
* Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
|
2022-01-24 20:26:25 -05:00
|
|
|
* Copyright (c) 2022, Alex Major
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2022-01-24 20:26:25 -05:00
|
|
|
#include <LibCore/Stream.h>
|
|
|
|
#include <LibMain/Main.h>
|
2021-09-11 12:20:47 +03:00
|
|
|
#include <fcntl.h>
|
2019-07-19 21:08:26 +10:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2019-06-16 11:49:39 +02:00
|
|
|
|
2022-01-24 20:26:25 -05:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments)
|
2019-06-16 11:49:39 +02:00
|
|
|
{
|
2022-10-15 05:57:20 +03:00
|
|
|
auto file = TRY(Core::Stream::File::open("/sys/kernel/power_state"sv, Core::Stream::OpenMode::Write));
|
2022-01-24 20:26:25 -05:00
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
const DeprecatedString file_contents = "2";
|
2022-01-24 20:26:25 -05:00
|
|
|
TRY(file->write(file_contents.bytes()));
|
|
|
|
file->close();
|
|
|
|
|
2021-09-11 12:20:47 +03:00
|
|
|
return 0;
|
2019-06-16 11:49:39 +02:00
|
|
|
}
|