Index: /trunk/src/VBox/Runtime/generic/sched-generic.cpp
===================================================================
--- /trunk/src/VBox/Runtime/generic/sched-generic.cpp	(revision 86524)
+++ /trunk/src/VBox/Runtime/generic/sched-generic.cpp	(revision 86525)
@@ -53,13 +53,4 @@
 
 
-/**
- * Validates and sets the process priority.
- * This will check that all rtThreadNativeSetPriority() will success for all the
- * thread types when applied to the current thread.
- *
- * @returns iprt status code.
- * @param   enmPriority     The priority to validate and set.
- * @remark  Located in sched.
- */
 DECLHIDDEN(int) rtProcNativeSetPriority(RTPROCPRIORITY enmPriority)
 {
@@ -69,16 +60,4 @@
 
 
-/**
- * Sets the priority of the thread according to the thread type
- * and current process priority.
- *
- * The RTTHREADINT::enmType member has not yet been updated and will be updated by
- * the caller on a successful return.
- *
- * @returns iprt status code.
- * @param   pThread     The thread in question.
- * @param   enmType     The thread type.
- * @remark  Located in sched.
- */
 DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)
 {
Index: /trunk/src/VBox/Runtime/include/internal/process.h
===================================================================
--- /trunk/src/VBox/Runtime/include/internal/process.h	(revision 86524)
+++ /trunk/src/VBox/Runtime/include/internal/process.h	(revision 86525)
@@ -46,9 +46,11 @@
 /**
  * Validates and sets the process priority.
+ *
  * This will check that all rtThreadNativeSetPriority() will success for all the
  * thread types when applied to the current thread.
  *
- * @returns iprt status code.
+ * @returns IPRT status code.
  * @param   enmPriority     The priority to validate and set.
+ *
  * @remark  Located in sched.
  */
Index: /trunk/src/VBox/Runtime/r3/linux/sched-linux.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r3/linux/sched-linux.cpp	(revision 86524)
+++ /trunk/src/VBox/Runtime/r3/linux/sched-linux.cpp	(revision 86525)
@@ -597,13 +597,4 @@
 
 
-/**
- * Validates and sets the process priority.
- *
- * This will check that all rtThreadNativeSetPriority() will success for all the
- * thread types when applied to the current thread.
- *
- * @returns iprt status code.
- * @param   enmPriority     The priority to validate and set.
- */
 DECLHIDDEN(int) rtProcNativeSetPriority(RTPROCPRIORITY enmPriority)
 {
@@ -681,15 +672,4 @@
 
 
-/**
- * Sets the priority of the thread according to the thread type
- * and current process priority.
- *
- * The RTTHREADINT::enmType member has not yet been updated and will be updated by
- * the caller on a successful return.
- *
- * @returns iprt status code.
- * @param   pThread     The thread in question.
- * @param   enmType     The thread type.
- */
 DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)
 {
Index: /trunk/src/VBox/Runtime/r3/os2/sched-os2.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r3/os2/sched-os2.cpp	(revision 86524)
+++ /trunk/src/VBox/Runtime/r3/os2/sched-os2.cpp	(revision 86525)
@@ -197,13 +197,4 @@
 
 
-/**
- * Validates and sets the process priority.
- * This will check that all rtThreadNativeSetPriority() will success for all the
- * thread types when applied to the current thread.
- *
- * @returns iprt status code.
- * @param   enmPriority     The priority to validate and set.
- * @remark  Located in sched.
- */
 DECLHIDDEN(int) rtProcNativeSetPriority(RTPROCPRIORITY enmPriority)
 {
@@ -227,16 +218,4 @@
 
 
-/**
- * Sets the priority of the thread according to the thread type
- * and current process priority.
- *
- * The RTTHREADINT::enmType member has not yet been updated and will be updated by
- * the caller on a successful return.
- *
- * @returns iprt status code.
- * @param   pThread     The thread in question.
- * @param   enmType     The thread type.
- * @remark  Located in sched.
- */
 DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)
 {
Index: /trunk/src/VBox/Runtime/r3/posix/sched-posix.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r3/posix/sched-posix.cpp	(revision 86524)
+++ /trunk/src/VBox/Runtime/r3/posix/sched-posix.cpp	(revision 86525)
@@ -639,12 +639,4 @@
 
 
-/**
- * Validates and sets the process priority.
- * This will check that all rtThreadNativeSetPriority() will success for all the
- * thread types when applied to the current thread.
- *
- * @returns iprt status code.
- * @param   enmPriority     The priority to validate and set.
- */
 DECLHIDDEN(int) rtProcNativeSetPriority(RTPROCPRIORITY enmPriority)
 {
@@ -777,15 +769,4 @@
 
 
-/**
- * Sets the priority of the thread according to the thread type
- * and current process priority.
- *
- * The RTTHREADINT::enmType member has not yet been updated and will be updated by
- * the caller on a successful return.
- *
- * @returns iprt status code.
- * @param   Thread      The thread in question.
- * @param   enmType     The thread type.
- */
 DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)
 {
Index: /trunk/src/VBox/Runtime/r3/win/sched-win.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r3/win/sched-win.cpp	(revision 86524)
+++ /trunk/src/VBox/Runtime/r3/win/sched-win.cpp	(revision 86525)
@@ -264,13 +264,4 @@
 
 
-/**
- * Validates and sets the process priority.
- * This will check that all rtThreadNativeSetPriority() will success for all the
- * thread types when applied to the current thread.
- *
- * @returns iprt status code.
- * @param   enmPriority     The priority to validate and set.
- * @remark  Located in sched.
- */
 DECLHIDDEN(int) rtProcNativeSetPriority(RTPROCPRIORITY enmPriority)
 {
@@ -309,16 +300,4 @@
 
 
-/**
- * Sets the priority of the thread according to the thread type
- * and current process priority.
- *
- * The RTTHREADINT::enmType member has not yet been updated and will be updated by
- * the caller on a successful return.
- *
- * @returns iprt status code.
- * @param   pThread     The thread in question.
- * @param   enmType     The thread type.
- * @remark  Located in sched.
- */
 DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)
 {
