(they are all stubs before that). This stops wxGTK (and in turn, Audacity and others) from displaying annoying "Cannot get priority range for scheduling policy 0" message at startup: http://mail-index.netbsd.org/tech-pkg/2005/11/22/0020.html http://mail-index.netbsd.org/netbsd-users/2006/07/02/0004.html http://mail-index.netbsd.org/netbsd-users/2007/06/28/0002.html OK by wiz@.
20 lines
624 B
Text
20 lines
624 B
Text
$NetBSD: patch-aj,v 1.1 2009/01/08 21:58:17 shattered Exp $
|
|
|
|
Thread priority functions were stubs until 4.99.50.
|
|
|
|
--- src/unix/threadpsx.cpp.orig 2003-09-21 15:31:40.000000000 +0400
|
|
+++ src/unix/threadpsx.cpp
|
|
@@ -58,6 +58,13 @@
|
|
#include <sys/resource.h>
|
|
#endif
|
|
|
|
+#ifdef __NetBSD__
|
|
+#include <sys/param.h>
|
|
+#if __NetBSD_Version__ < 499005000 && defined(HAVE_THREAD_PRIORITY_FUNCTIONS)
|
|
+#undef HAVE_THREAD_PRIORITY_FUNCTIONS
|
|
+#endif
|
|
+#endif
|
|
+
|
|
// ----------------------------------------------------------------------------
|
|
// constants
|
|
// ----------------------------------------------------------------------------
|