mach: supress gamemode dlopen failed error
This commit is contained in:
parent
b7ea4aeb89
commit
55e6959f28
1 changed files with 9 additions and 7 deletions
|
|
@ -188,21 +188,23 @@ pub const Platform = struct {
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
fn initLinuxGamemode(allocator: std.mem.Allocator) error{ OutOfMemory, InvalidUtf8 }!bool {
|
fn initLinuxGamemode(allocator: std.mem.Allocator) error{ OutOfMemory, DLOpenFailed, InvalidUtf8 }!bool {
|
||||||
if (builtin.os.tag == .linux) {
|
if (builtin.os.tag == .linux) {
|
||||||
const gamemode = @import("gamemode");
|
const gamemode = @import("gamemode");
|
||||||
if (try activateGamemode(allocator)) {
|
if (try activateGamemode(allocator)) {
|
||||||
if (gamemode.requestStart()) {
|
gamemode.requestStart() catch |err| {
|
||||||
return true;
|
if (!std.mem.containsAtLeast(u8, gamemode.errorString(), 1, "dlopen failed"))
|
||||||
} else |err| {
|
std.log.err("Gamemode error {} -> {s}", .{ err, gamemode.errorString() });
|
||||||
std.log.err("Gamemode error {} -> {s}", .{ err, gamemode.errorString() });
|
return false;
|
||||||
}
|
};
|
||||||
|
std.log.info("Gamemode activated", .{});
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
fn deinitLinuxGamemode(platform: *Platform) void {
|
fn deinitLinuxGamemode(platform: *Platform) void {
|
||||||
if (builtin.os.tag == .linux and platform.linux_gamemode_is_active) {
|
if (platform.linux_gamemode_is_active) {
|
||||||
const gamemode = @import("gamemode");
|
const gamemode = @import("gamemode");
|
||||||
gamemode.requestEnd() catch |err| {
|
gamemode.requestEnd() catch |err| {
|
||||||
std.log.err("Gamemode error {} -> {s}", .{ err, gamemode.errorString() });
|
std.log.err("Gamemode error {} -> {s}", .{ err, gamemode.errorString() });
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue