Changeset 86525 in vbox for trunk/src/VBox/Runtime/generic/sched-generic.cpp
- Timestamp:
- Oct 11, 2020 6:28:52 PM (4 years ago)
- File:
-
- 1 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 {
Note:
See TracChangeset
for help on using the changeset viewer.