mirror of
https://github.com/FeralInteractive/gamemode.git
synced 2025-06-06 15:47:20 +02:00
Restructure files and libraries
Rename a bunch of files to make the consistent Create two new subdirectories for common code, and utilities
This commit is contained in:
parent
41988b7f1c
commit
1b78d0dcf7
@ -31,8 +31,8 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
|
||||||
#include "external-helper.h"
|
#include "common-external.h"
|
||||||
#include "logging.h"
|
#include "common-logging.h"
|
||||||
|
|
||||||
#include <linux/limits.h>
|
#include <linux/limits.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
@ -31,8 +31,8 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
|
||||||
#include "governors-query.h"
|
#include "common-governors.h"
|
||||||
#include "logging.h"
|
#include "common-logging.h"
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <glob.h>
|
#include <glob.h>
|
@ -28,8 +28,8 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|||||||
POSSIBILITY OF SUCH DAMAGE.
|
POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
#include "gpu-control.h"
|
#include "common-gpu.h"
|
||||||
#include "logging.h"
|
#include "common-logging.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
@ -30,7 +30,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "daemon_config.h"
|
#define CONFIG_VALUE_MAX 256
|
||||||
|
|
||||||
/* Enums for GPU vendors */
|
/* Enums for GPU vendors */
|
||||||
enum GPUVendor {
|
enum GPUVendor {
|
@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
#include "helpers.h"
|
#include "common-helpers.h"
|
||||||
|
|
||||||
/* Starting with C99 we can use "inline" without "static" and thus avoid
|
/* Starting with C99 we can use "inline" without "static" and thus avoid
|
||||||
* having multiple (local) definitions of the same inline function. One
|
* having multiple (local) definitions of the same inline function. One
|
@ -29,7 +29,8 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "logging.h"
|
#include "common-logging.h"
|
||||||
|
|
||||||
#include "syslog.h"
|
#include "syslog.h"
|
||||||
|
|
||||||
static bool use_syslog = false;
|
static bool use_syslog = false;
|
20
common/meson.build
Normal file
20
common/meson.build
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# Convenience library for the duplicated logging functionality
|
||||||
|
common_sources = [
|
||||||
|
'common-logging.c',
|
||||||
|
'common-governors.c',
|
||||||
|
'common-external.c',
|
||||||
|
'common-helpers.c',
|
||||||
|
'common-gpu.c',
|
||||||
|
]
|
||||||
|
|
||||||
|
daemon_common = static_library(
|
||||||
|
'daemon-common',
|
||||||
|
sources: common_sources,
|
||||||
|
install: false,
|
||||||
|
)
|
||||||
|
|
||||||
|
link_daemon_common = declare_dependency(
|
||||||
|
link_with: daemon_common,
|
||||||
|
)
|
||||||
|
|
||||||
|
include_daemon_common = include_directories('.')
|
@ -1,51 +0,0 @@
|
|||||||
/*
|
|
||||||
|
|
||||||
Copyright (c) 2017-2019, Feral Interactive
|
|
||||||
All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions are met:
|
|
||||||
|
|
||||||
* Redistributions of source code must retain the above copyright notice,
|
|
||||||
this list of conditions and the following disclaimer.
|
|
||||||
* Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in the
|
|
||||||
documentation and/or other materials provided with the distribution.
|
|
||||||
* Neither the name of Feral Interactive nor the names of its contributors
|
|
||||||
may be used to endorse or promote products derived from this software
|
|
||||||
without specific prior written permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
||||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
||||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
||||||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
||||||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
||||||
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
||||||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
||||||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
||||||
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
||||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
||||||
POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
|
|
||||||
#include "gamemode.h"
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Run the main D-BUS loop "forever"
|
|
||||||
*/
|
|
||||||
void game_mode_context_loop(GameModeContext *context) __attribute__((noreturn));
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Inhibit the screensaver
|
|
||||||
*/
|
|
||||||
int game_mode_inhibit_screensaver(bool inhibit);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Signal the ClientCount property has changed
|
|
||||||
*/
|
|
||||||
void game_mode_client_count_changed(void);
|
|
@ -30,9 +30,10 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
*/
|
*/
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
|
||||||
#include "daemon_config.h"
|
#include "gamemode-config.h"
|
||||||
#include "helpers.h"
|
|
||||||
#include "logging.h"
|
#include "common-helpers.h"
|
||||||
|
#include "common-logging.h"
|
||||||
|
|
||||||
/* Ben Hoyt's inih library */
|
/* Ben Hoyt's inih library */
|
||||||
#include "ini.h"
|
#include "ini.h"
|
@ -31,14 +31,14 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
|
||||||
|
#include "common-external.h"
|
||||||
|
#include "common-governors.h"
|
||||||
|
#include "common-helpers.h"
|
||||||
|
#include "common-logging.h"
|
||||||
|
#include "gamemode-config.h"
|
||||||
#include "gamemode.h"
|
#include "gamemode.h"
|
||||||
#include "config.h"
|
|
||||||
#include "daemon_config.h"
|
#include "build-config.h"
|
||||||
#include "dbus_messaging.h"
|
|
||||||
#include "external-helper.h"
|
|
||||||
#include "governors-query.h"
|
|
||||||
#include "helpers.h"
|
|
||||||
#include "logging.h"
|
|
||||||
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
@ -31,9 +31,8 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
|
||||||
#include "dbus_messaging.h"
|
#include "common-logging.h"
|
||||||
#include "gamemode.h"
|
#include "gamemode.h"
|
||||||
#include "logging.h"
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
@ -219,21 +218,22 @@ static int method_refresh_config(sd_bus_message *m, void *userdata,
|
|||||||
/**
|
/**
|
||||||
* D-BUS vtable to dispatch virtual methods
|
* D-BUS vtable to dispatch virtual methods
|
||||||
*/
|
*/
|
||||||
static const sd_bus_vtable gamemode_vtable[] =
|
static const sd_bus_vtable gamemode_vtable[] = {
|
||||||
{ SD_BUS_VTABLE_START(0),
|
SD_BUS_VTABLE_START(0),
|
||||||
SD_BUS_PROPERTY("ClientCount", "i", property_get_client_count, 0,
|
SD_BUS_PROPERTY("ClientCount", "i", property_get_client_count, 0,
|
||||||
SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
|
SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
|
||||||
SD_BUS_METHOD("RegisterGame", "i", "i", method_register_game, SD_BUS_VTABLE_UNPRIVILEGED),
|
SD_BUS_METHOD("RegisterGame", "i", "i", method_register_game, SD_BUS_VTABLE_UNPRIVILEGED),
|
||||||
SD_BUS_METHOD("UnregisterGame", "i", "i", method_unregister_game, SD_BUS_VTABLE_UNPRIVILEGED),
|
SD_BUS_METHOD("UnregisterGame", "i", "i", method_unregister_game, SD_BUS_VTABLE_UNPRIVILEGED),
|
||||||
SD_BUS_METHOD("QueryStatus", "i", "i", method_query_status, SD_BUS_VTABLE_UNPRIVILEGED),
|
SD_BUS_METHOD("QueryStatus", "i", "i", method_query_status, SD_BUS_VTABLE_UNPRIVILEGED),
|
||||||
SD_BUS_METHOD("RegisterGameByPID", "ii", "i", method_register_game_by_pid,
|
SD_BUS_METHOD("RegisterGameByPID", "ii", "i", method_register_game_by_pid,
|
||||||
SD_BUS_VTABLE_UNPRIVILEGED),
|
SD_BUS_VTABLE_UNPRIVILEGED),
|
||||||
SD_BUS_METHOD("UnregisterGameByPID", "ii", "i", method_unregister_game_by_pid,
|
SD_BUS_METHOD("UnregisterGameByPID", "ii", "i", method_unregister_game_by_pid,
|
||||||
SD_BUS_VTABLE_UNPRIVILEGED),
|
SD_BUS_VTABLE_UNPRIVILEGED),
|
||||||
SD_BUS_METHOD("QueryStatusByPID", "ii", "i", method_query_status_by_pid,
|
SD_BUS_METHOD("QueryStatusByPID", "ii", "i", method_query_status_by_pid,
|
||||||
SD_BUS_VTABLE_UNPRIVILEGED),
|
SD_BUS_VTABLE_UNPRIVILEGED),
|
||||||
SD_BUS_METHOD("RefreshConfig", "", "i", method_refresh_config, SD_BUS_VTABLE_UNPRIVILEGED),
|
SD_BUS_METHOD("RefreshConfig", "", "i", method_refresh_config, SD_BUS_VTABLE_UNPRIVILEGED),
|
||||||
SD_BUS_VTABLE_END };
|
SD_BUS_VTABLE_END
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Main process loop for the daemon. Run until quitting has been requested.
|
* Main process loop for the daemon. Run until quitting has been requested.
|
@ -32,15 +32,14 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
|
||||||
#include "config.h"
|
#include "common-external.h"
|
||||||
#include "external-helper.h"
|
#include "common-gpu.h"
|
||||||
#include "helpers.h"
|
#include "common-helpers.h"
|
||||||
#include "logging.h"
|
#include "common-logging.h"
|
||||||
|
#include "gamemode-config.h"
|
||||||
#include "gamemode.h"
|
#include "gamemode.h"
|
||||||
|
|
||||||
#include "daemon_config.h"
|
#include "build-config.h"
|
||||||
#include "gpu-control.h"
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Attempts to identify the current in use GPU information
|
* Attempts to identify the current in use GPU information
|
||||||
|
@ -31,10 +31,10 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
|
||||||
#include "daemon_config.h"
|
#include "common-helpers.h"
|
||||||
|
#include "common-logging.h"
|
||||||
|
#include "gamemode-config.h"
|
||||||
#include "gamemode.h"
|
#include "gamemode.h"
|
||||||
#include "helpers.h"
|
|
||||||
#include "logging.h"
|
|
||||||
|
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
@ -31,9 +31,9 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
|
||||||
#include "daemon_config.h"
|
#include "common-logging.h"
|
||||||
|
#include "gamemode-config.h"
|
||||||
#include "gamemode.h"
|
#include "gamemode.h"
|
||||||
#include "logging.h"
|
|
||||||
|
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
@ -31,9 +31,14 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
|
||||||
|
#include "common-external.h"
|
||||||
|
#include "common-governors.h"
|
||||||
|
#include "common-gpu.h"
|
||||||
|
#include "common-helpers.h"
|
||||||
|
#include "common-logging.h"
|
||||||
|
#include "gamemode-config.h"
|
||||||
#include "gamemode.h"
|
#include "gamemode.h"
|
||||||
#include "helpers.h"
|
#include "gamemode_client.h"
|
||||||
#include "logging.h"
|
|
||||||
|
|
||||||
#include <libgen.h>
|
#include <libgen.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
@ -42,11 +47,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "daemon_config.h"
|
struct GameModeConfig;
|
||||||
#include "external-helper.h"
|
|
||||||
#include "gamemode_client.h"
|
|
||||||
#include "governors-query.h"
|
|
||||||
#include "gpu-control.h"
|
|
||||||
|
|
||||||
/* Initial verify step to ensure gamemode isn't already active */
|
/* Initial verify step to ensure gamemode isn't already active */
|
||||||
static int verify_gamemode_initial(struct GameModeConfig *config)
|
static int verify_gamemode_initial(struct GameModeConfig *config)
|
||||||
|
@ -31,9 +31,9 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
|
||||||
|
#include "common-helpers.h"
|
||||||
|
#include "common-logging.h"
|
||||||
#include "gamemode.h"
|
#include "gamemode.h"
|
||||||
#include "helpers.h"
|
|
||||||
#include "logging.h"
|
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
@ -150,3 +150,18 @@ int game_mode_initialise_gpu(GameModeConfig *config, GameModeGPUInfo **info);
|
|||||||
void game_mode_free_gpu(GameModeGPUInfo **info);
|
void game_mode_free_gpu(GameModeGPUInfo **info);
|
||||||
int game_mode_apply_gpu(const GameModeGPUInfo *info);
|
int game_mode_apply_gpu(const GameModeGPUInfo *info);
|
||||||
int game_mode_get_gpu(GameModeGPUInfo *info);
|
int game_mode_get_gpu(GameModeGPUInfo *info);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Run the main D-BUS loop "forever"
|
||||||
|
*/
|
||||||
|
void game_mode_context_loop(GameModeContext *context) __attribute__((noreturn));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Inhibit the screensaver
|
||||||
|
*/
|
||||||
|
int game_mode_inhibit_screensaver(bool inhibit);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Signal the ClientCount property has changed
|
||||||
|
*/
|
||||||
|
void game_mode_client_count_changed(void);
|
@ -49,11 +49,13 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
|
||||||
#include "config.h"
|
#include "common-logging.h"
|
||||||
#include "dbus_messaging.h"
|
#include "gamemode-config.h"
|
||||||
#include "gamemode.h"
|
#include "gamemode.h"
|
||||||
|
|
||||||
#include "gamemode_client.h"
|
#include "gamemode_client.h"
|
||||||
#include "logging.h"
|
|
||||||
|
#include "build-config.h"
|
||||||
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
@ -1,35 +1,14 @@
|
|||||||
# Convenience library for the duplicated logging functionality
|
|
||||||
common_sources = [
|
|
||||||
'logging.c',
|
|
||||||
'governors-query.c',
|
|
||||||
'external-helper.c',
|
|
||||||
'gpu-control.c',
|
|
||||||
]
|
|
||||||
|
|
||||||
daemon_common = static_library(
|
|
||||||
'daemon-common',
|
|
||||||
sources: common_sources,
|
|
||||||
install: false,
|
|
||||||
)
|
|
||||||
|
|
||||||
link_daemon_common = declare_dependency(
|
|
||||||
link_with: daemon_common,
|
|
||||||
)
|
|
||||||
|
|
||||||
# Main daemon
|
# Main daemon
|
||||||
daemon_sources = [
|
daemon_sources = [
|
||||||
'main.c',
|
'gamemoded.c',
|
||||||
'gamemode.c',
|
'gamemode-context.c',
|
||||||
'gamemode-env.c',
|
|
||||||
'gamemode-ioprio.c',
|
'gamemode-ioprio.c',
|
||||||
'gamemode-proc.c',
|
|
||||||
'gamemode-sched.c',
|
'gamemode-sched.c',
|
||||||
'gamemode-wine.c',
|
'gamemode-wine.c',
|
||||||
'gamemode-tests.c',
|
'gamemode-tests.c',
|
||||||
'gamemode-gpu.c',
|
'gamemode-gpu.c',
|
||||||
'dbus_messaging.c',
|
'gamemode-dbus.c',
|
||||||
'daemon_config.c',
|
'gamemode-config.c',
|
||||||
'helpers.c',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
gamemoded_includes = libgamemode_includes
|
gamemoded_includes = libgamemode_includes
|
||||||
@ -45,36 +24,9 @@ executable(
|
|||||||
inih_dependency,
|
inih_dependency,
|
||||||
libdl,
|
libdl,
|
||||||
],
|
],
|
||||||
include_directories: gamemoded_includes,
|
include_directories: [
|
||||||
install: true,
|
gamemoded_includes,
|
||||||
)
|
include_daemon_common,
|
||||||
|
|
||||||
# Small target util to get and set cpu governors
|
|
||||||
cpugovctl_sources = [
|
|
||||||
'cpugovctl.c',
|
|
||||||
]
|
|
||||||
|
|
||||||
cpugovctl = executable(
|
|
||||||
'cpugovctl',
|
|
||||||
sources: cpugovctl_sources,
|
|
||||||
dependencies: [
|
|
||||||
link_daemon_common,
|
|
||||||
],
|
],
|
||||||
install: true,
|
install: true,
|
||||||
install_dir: path_libexecdir,
|
)
|
||||||
)
|
|
||||||
|
|
||||||
# Small target util to get and set gpu clocks values
|
|
||||||
gpuclockctl_sources = [
|
|
||||||
'gpuclockctl.c',
|
|
||||||
]
|
|
||||||
|
|
||||||
gpuclockctl = executable(
|
|
||||||
'gpuclockctl',
|
|
||||||
sources: gpuclockctl_sources,
|
|
||||||
dependencies: [
|
|
||||||
link_daemon_common,
|
|
||||||
],
|
|
||||||
install: true,
|
|
||||||
install_dir: path_libexecdir,
|
|
||||||
)
|
|
@ -132,13 +132,19 @@ cdata.set_quoted('LIBEXECDIR', path_libexecdir)
|
|||||||
cdata.set_quoted('GAMEMODE_VERSION', meson.project_version())
|
cdata.set_quoted('GAMEMODE_VERSION', meson.project_version())
|
||||||
config_h = configure_file(
|
config_h = configure_file(
|
||||||
configuration: cdata,
|
configuration: cdata,
|
||||||
output: 'config.h',
|
output: 'build-config.h',
|
||||||
)
|
)
|
||||||
config_h_dir = include_directories('.')
|
config_h_dir = include_directories('.')
|
||||||
|
|
||||||
# Library is always required
|
# Library is always required
|
||||||
subdir('lib')
|
subdir('lib')
|
||||||
|
|
||||||
|
# common lib is always required
|
||||||
|
subdir('common')
|
||||||
|
|
||||||
|
# Utilities are always required
|
||||||
|
subdir('util')
|
||||||
|
|
||||||
# The daemon can be disabled if necessary, allowing multilib builds of the
|
# The daemon can be disabled if necessary, allowing multilib builds of the
|
||||||
# main library
|
# main library
|
||||||
if with_daemon == true
|
if with_daemon == true
|
||||||
|
@ -31,8 +31,8 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
|
||||||
#include "governors-query.h"
|
#include "common-governors.h"
|
||||||
#include "logging.h"
|
#include "common-logging.h"
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
@ -31,10 +31,9 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
|
||||||
#include "logging.h"
|
#include "common-external.h"
|
||||||
|
#include "common-gpu.h"
|
||||||
#include "external-helper.h"
|
#include "common-logging.h"
|
||||||
#include "gpu-control.h"
|
|
||||||
|
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
|
32
util/meson.build
Normal file
32
util/meson.build
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
|
||||||
|
# Small target util to get and set cpu governors
|
||||||
|
cpugovctl_sources = [
|
||||||
|
'cpugovctl.c',
|
||||||
|
]
|
||||||
|
|
||||||
|
cpugovctl = executable(
|
||||||
|
'cpugovctl',
|
||||||
|
sources: cpugovctl_sources,
|
||||||
|
dependencies: [
|
||||||
|
link_daemon_common,
|
||||||
|
],
|
||||||
|
install: true,
|
||||||
|
include_directories: include_daemon_common,
|
||||||
|
install_dir: path_libexecdir,
|
||||||
|
)
|
||||||
|
|
||||||
|
# Small target util to get and set gpu clocks values
|
||||||
|
gpuclockctl_sources = [
|
||||||
|
'gpuclockctl.c',
|
||||||
|
]
|
||||||
|
|
||||||
|
gpuclockctl = executable(
|
||||||
|
'gpuclockctl',
|
||||||
|
sources: gpuclockctl_sources,
|
||||||
|
dependencies: [
|
||||||
|
link_daemon_common,
|
||||||
|
],
|
||||||
|
install: true,
|
||||||
|
include_directories: include_daemon_common,
|
||||||
|
install_dir: path_libexecdir,
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user