mirror of
https://github.com/mpv-player/mpv
synced 2025-02-23 08:26:56 +00:00
1. Move the macros for priority classes for OS/2 from priority.c to osdep.h
2. Define SetPriorityClass() and GetCurrentProcess() in osdep.h 3. Include osdep.h in priority.c This removes OS2-platform check in priority.c git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30828 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
6cf92cd32a
commit
66278a55ec
@ -27,7 +27,24 @@
|
|||||||
#define INCL_DOS
|
#define INCL_DOS
|
||||||
#define INCL_DOSDEVIOCTL
|
#define INCL_DOSDEVIOCTL
|
||||||
#include <os2.h>
|
#include <os2.h>
|
||||||
#endif
|
|
||||||
|
#include <process.h> /* getpid() */
|
||||||
|
|
||||||
|
#define REALTIME_PRIORITY_CLASS MAKESHORT(0, PRTYC_TIMECRITICAL)
|
||||||
|
#define HIGH_PRIORITY_CLASS MAKESHORT(PRTYD_MAXIMUM, PRTYC_REGULAR)
|
||||||
|
#define ABOVE_NORMAL_PRIORITY_CLASS MAKESHORT(PRTYD_MAXIMUM / 2, PRTYC_REGULAR)
|
||||||
|
#define NORMAL_PRIORITY_CLASS MAKESHORT(0, PRTYC_REGULAR)
|
||||||
|
#define BELOW_NORMAL_PRIORITY_CLASS MAKESHORT(PRTYD_MAXIMUM, PRTYC_IDLETIME)
|
||||||
|
#define IDLE_PRIORITY_CLASS MAKESHORT(0, PRTYC_IDLETIME)
|
||||||
|
|
||||||
|
#define SetPriorityClass(pid, prio) \
|
||||||
|
DosSetPriority(PRTYS_PROCESS, \
|
||||||
|
HIBYTE(prio), \
|
||||||
|
LOBYTE(prio), \
|
||||||
|
pid)
|
||||||
|
|
||||||
|
#define GetCurrentProcess() getpid()
|
||||||
|
#endif /* __OS2__ */
|
||||||
|
|
||||||
#endif /* MPLAYER_OSDEP_H */
|
#endif /* MPLAYER_OSDEP_H */
|
||||||
|
|
||||||
|
@ -20,23 +20,11 @@
|
|||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef __OS2__
|
#include "osdep.h"
|
||||||
|
|
||||||
#define INCL_DOS
|
|
||||||
#include <os2.h>
|
|
||||||
|
|
||||||
#define REALTIME_PRIORITY_CLASS MAKESHORT(0, PRTYC_TIMECRITICAL)
|
|
||||||
#define HIGH_PRIORITY_CLASS MAKESHORT(PRTYD_MAXIMUM, PRTYC_REGULAR)
|
|
||||||
#define ABOVE_NORMAL_PRIORITY_CLASS MAKESHORT(PRTYD_MAXIMUM / 2, PRTYC_REGULAR)
|
|
||||||
#define NORMAL_PRIORITY_CLASS MAKESHORT(0, PRTYC_REGULAR)
|
|
||||||
#define BELOW_NORMAL_PRIORITY_CLASS MAKESHORT(PRTYD_MAXIMUM, PRTYC_IDLETIME)
|
|
||||||
#define IDLE_PRIORITY_CLASS MAKESHORT(0, PRTYC_IDLETIME)
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
#endif
|
||||||
#endif /* __OS2__ */
|
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
@ -76,13 +64,6 @@ void set_priority(void)
|
|||||||
mp_msg(MSGT_CPLAYER, MSGL_STATUS, MSGTR_SettingProcessPriority,
|
mp_msg(MSGT_CPLAYER, MSGL_STATUS, MSGTR_SettingProcessPriority,
|
||||||
priority_presets_defs[i].name);
|
priority_presets_defs[i].name);
|
||||||
|
|
||||||
#ifdef __OS2__
|
|
||||||
DosSetPriority(PRTYS_PROCESS,
|
|
||||||
HIBYTE(priority_presets_defs[i].prio),
|
|
||||||
LOBYTE(priority_presets_defs[i].prio),
|
|
||||||
0);
|
|
||||||
#else
|
|
||||||
SetPriorityClass(GetCurrentProcess(), priority_presets_defs[i].prio);
|
SetPriorityClass(GetCurrentProcess(), priority_presets_defs[i].prio);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user