$OpenBSD: patch-src_Misc_Util_cpp,v 1.1.1.1 2021/03/29 19:51:31 sthen Exp $

OpenBSD doesn't support sched_setscheduler

--- src/Misc/Util.cpp.orig	Sat Jul 25 18:00:34 2020
+++ src/Misc/Util.cpp	Sat Jul 25 18:02:04 2020
@@ -125,14 +125,6 @@ bool fileexists(const char *filename)
 
 void set_realtime()
 {
-#ifdef HAVE_SCHEDULER
-    sched_param sc;
-    sc.sched_priority = 60;
-    //if you want get "sched_setscheduler undeclared" from compilation,
-    //you can safely remove the folowing line:
-    sched_setscheduler(0, SCHED_FIFO, &sc);
-    //if (err==0) printf("Real-time");
-#endif
 }
 
 
