From 75f8e2e73e03f628a4f2ba55ca8aa3e9f50cdbd9 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Thu, 24 Nov 2022 10:55:32 +0100 Subject: test: latency - --policy option - allow using SCHED_OTHER Signed-off-by: Jaroslav Kysela --- test/latency.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/latency.c b/test/latency.c index 3b20e1c1..5e67015c 100644 --- a/test/latency.c +++ b/test/latency.c @@ -361,6 +361,9 @@ void setscheduler(void) if (strcasecmp(sched_policy, "fifo") == 0) { policy = SCHED_FIFO; spolicy = "FIFO"; + } else if (strcasecmp(sched_policy, "other") == 0) { + policy = SCHED_OTHER; + spolicy = "OTHER"; } if (sched_getparam(0, &sched_param) < 0) { printf("Scheduler getparam failed...\n"); @@ -522,7 +525,7 @@ void help(void) "-e,--effect apply an effect (bandpass filter sweep)\n" "-x,--posdump dump buffer positions\n" "-X,--realtime do a realtime check (buffering)\n" -"-O,--policy set scheduler policy (RR or FIFO)\n" +"-O,--policy set scheduler policy (RR, FIFO or OTHER)\n" ); printf("Recognized sample formats are:"); for (k = 0; k < SND_PCM_FORMAT_LAST; ++k) { -- cgit v1.2.1