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