summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/r3/linux/sched-linux.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/Runtime/r3/linux/sched-linux.cpp')
-rw-r--r--src/VBox/Runtime/r3/linux/sched-linux.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/VBox/Runtime/r3/linux/sched-linux.cpp b/src/VBox/Runtime/r3/linux/sched-linux.cpp
index b1d19093c..824f79759 100644
--- a/src/VBox/Runtime/r3/linux/sched-linux.cpp
+++ b/src/VBox/Runtime/r3/linux/sched-linux.cpp
@@ -1,4 +1,4 @@
-/* $Id: sched-linux.cpp $ */
+/* $Id: sched-linux.cpp 36912 2011-05-02 14:23:01Z vboxsync $ */
/** @file
* IPRT - Scheduling, POSIX.
*/
@@ -467,7 +467,7 @@ static void *rtSchedNativeProberThread(void *pvUser)
* @returns iprt status code.
* @param enmType The thread type to be assumed for the current thread.
*/
-int rtSchedNativeCalcDefaultPriority(RTTHREADTYPE enmType)
+DECLHIDDEN(int) rtSchedNativeCalcDefaultPriority(RTTHREADTYPE enmType)
{
Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_END);
@@ -548,7 +548,7 @@ static void *rtSchedNativeValidatorThread(void *pvUser)
* @returns iprt status code.
* @param enmPriority The priority to validate and set.
*/
-int rtProcNativeSetPriority(RTPROCPRIORITY enmPriority)
+DECLHIDDEN(int) rtProcNativeSetPriority(RTPROCPRIORITY enmPriority)
{
Assert(enmPriority > RTPROCPRIORITY_INVALID && enmPriority < RTPROCPRIORITY_LAST);
@@ -599,7 +599,7 @@ int rtProcNativeSetPriority(RTPROCPRIORITY enmPriority)
* @param pThread The thread in question.
* @param enmType The thread type.
*/
-int rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)
+DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)
{
/* sanity */
Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_END);