blob: 5dbe25493c58478db5b95b4448101104480d7991 (
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
|
From d898fac929cd093bb39af3f517158777c21c06ef Mon Sep 17 00:00:00 2001
From: Carlo Landmeter <clandmeter@gmail.com>
Date: Tue, 31 Mar 2015 10:07:14 +0000
Subject: [PATCH] only run glibc specific hacks on glibc
---
output_alsa.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/output_alsa.c b/output_alsa.c
index aa01560..c1b5435 100644
--- a/output_alsa.c
+++ b/output_alsa.c
@@ -853,7 +853,7 @@ void output_init_alsa(log_level level, const char *device, unsigned output_buf_s
set_mixer(output.device, volume_mixer_name, volume_mixer_index ? atoi(volume_mixer_index) : 0, true, 0, 0);
}
-#if LINUX
+#if defined(__GLIBC__)
// RT linux - aim to avoid pagefaults by locking memory:
// https://rt.wiki.kernel.org/index.php/Threaded_RT-application_with_memory_locking_and_stack_handling_example
if (mlockall(MCL_CURRENT | MCL_FUTURE) == -1) {
--
2.3.4
|