- Timestamp:
- Oct 11, 2020 6:28:52 PM (4 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/sched-generic.cpp
r82968 r86525 53 53 54 54 55 /**56 * Validates and sets the process priority.57 * This will check that all rtThreadNativeSetPriority() will success for all the58 * thread types when applied to the current thread.59 *60 * @returns iprt status code.61 * @param enmPriority The priority to validate and set.62 * @remark Located in sched.63 */64 55 DECLHIDDEN(int) rtProcNativeSetPriority(RTPROCPRIORITY enmPriority) 65 56 { … … 69 60 70 61 71 /**72 * Sets the priority of the thread according to the thread type73 * and current process priority.74 *75 * The RTTHREADINT::enmType member has not yet been updated and will be updated by76 * the caller on a successful return.77 *78 * @returns iprt status code.79 * @param pThread The thread in question.80 * @param enmType The thread type.81 * @remark Located in sched.82 */83 62 DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType) 84 63 { -
trunk/src/VBox/Runtime/include/internal/process.h
r85124 r86525 46 46 /** 47 47 * Validates and sets the process priority. 48 * 48 49 * This will check that all rtThreadNativeSetPriority() will success for all the 49 50 * thread types when applied to the current thread. 50 51 * 51 * @returns iprtstatus code.52 * @returns IPRT status code. 52 53 * @param enmPriority The priority to validate and set. 54 * 53 55 * @remark Located in sched. 54 56 */ -
trunk/src/VBox/Runtime/r3/linux/sched-linux.cpp
r82968 r86525 597 597 598 598 599 /**600 * Validates and sets the process priority.601 *602 * This will check that all rtThreadNativeSetPriority() will success for all the603 * thread types when applied to the current thread.604 *605 * @returns iprt status code.606 * @param enmPriority The priority to validate and set.607 */608 599 DECLHIDDEN(int) rtProcNativeSetPriority(RTPROCPRIORITY enmPriority) 609 600 { … … 681 672 682 673 683 /**684 * Sets the priority of the thread according to the thread type685 * and current process priority.686 *687 * The RTTHREADINT::enmType member has not yet been updated and will be updated by688 * the caller on a successful return.689 *690 * @returns iprt status code.691 * @param pThread The thread in question.692 * @param enmType The thread type.693 */694 674 DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType) 695 675 { -
trunk/src/VBox/Runtime/r3/os2/sched-os2.cpp
r82968 r86525 197 197 198 198 199 /**200 * Validates and sets the process priority.201 * This will check that all rtThreadNativeSetPriority() will success for all the202 * thread types when applied to the current thread.203 *204 * @returns iprt status code.205 * @param enmPriority The priority to validate and set.206 * @remark Located in sched.207 */208 199 DECLHIDDEN(int) rtProcNativeSetPriority(RTPROCPRIORITY enmPriority) 209 200 { … … 227 218 228 219 229 /**230 * Sets the priority of the thread according to the thread type231 * and current process priority.232 *233 * The RTTHREADINT::enmType member has not yet been updated and will be updated by234 * the caller on a successful return.235 *236 * @returns iprt status code.237 * @param pThread The thread in question.238 * @param enmType The thread type.239 * @remark Located in sched.240 */241 220 DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType) 242 221 { -
trunk/src/VBox/Runtime/r3/posix/sched-posix.cpp
r82968 r86525 639 639 640 640 641 /**642 * Validates and sets the process priority.643 * This will check that all rtThreadNativeSetPriority() will success for all the644 * thread types when applied to the current thread.645 *646 * @returns iprt status code.647 * @param enmPriority The priority to validate and set.648 */649 641 DECLHIDDEN(int) rtProcNativeSetPriority(RTPROCPRIORITY enmPriority) 650 642 { … … 777 769 778 770 779 /**780 * Sets the priority of the thread according to the thread type781 * and current process priority.782 *783 * The RTTHREADINT::enmType member has not yet been updated and will be updated by784 * the caller on a successful return.785 *786 * @returns iprt status code.787 * @param Thread The thread in question.788 * @param enmType The thread type.789 */790 771 DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType) 791 772 { -
trunk/src/VBox/Runtime/r3/win/sched-win.cpp
r82968 r86525 264 264 265 265 266 /**267 * Validates and sets the process priority.268 * This will check that all rtThreadNativeSetPriority() will success for all the269 * thread types when applied to the current thread.270 *271 * @returns iprt status code.272 * @param enmPriority The priority to validate and set.273 * @remark Located in sched.274 */275 266 DECLHIDDEN(int) rtProcNativeSetPriority(RTPROCPRIORITY enmPriority) 276 267 { … … 309 300 310 301 311 /**312 * Sets the priority of the thread according to the thread type313 * and current process priority.314 *315 * The RTTHREADINT::enmType member has not yet been updated and will be updated by316 * the caller on a successful return.317 *318 * @returns iprt status code.319 * @param pThread The thread in question.320 * @param enmType The thread type.321 * @remark Located in sched.322 */323 302 DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType) 324 303 {
Note:
See TracChangeset
for help on using the changeset viewer.