mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-27 20:42:33 +02:00
utilioprio: Add Windows support as ioprio_set_file_idle
This commit is contained in:
parent
a4e893bc6e
commit
8f397d99cd
25
configure.ac
25
configure.ac
@ -1090,6 +1090,31 @@ else
|
||||
fi
|
||||
AM_CONDITIONAL([HAVE_IOPRIO_SYSCALL], [test "$have_ioprio_syscall" = "yes"])
|
||||
|
||||
AC_MSG_CHECKING(for Windows file I/O priority functions)
|
||||
AC_COMPILE_IFELSE([
|
||||
AC_LANG_PROGRAM([[
|
||||
#define _WIN32_WINNT 0x0600
|
||||
#include <windows.h>
|
||||
#include <io.h>
|
||||
#include <stdio.h>
|
||||
]],[[
|
||||
static const FILE_IO_PRIORITY_HINT_INFO priorityHint = {
|
||||
.PriorityHint = IoPriorityHintLow,
|
||||
};
|
||||
FILE * const F = fopen("test", "r");
|
||||
HANDLE hFile = _get_osfhandle(_fileno(F));
|
||||
|
||||
SetFileInformationByHandle(hFile, FileIoPriorityHintInfo, &priorityHint, sizeof(priorityHint));
|
||||
]])
|
||||
],[
|
||||
have_windows_ioprio=yes
|
||||
AC_DEFINE(HAVE_WINDOWS_IOPRIO,1,[Define this symbol if you have Windows I/O priority functions])
|
||||
],[
|
||||
have_windows_ioprio=no
|
||||
])
|
||||
AC_MSG_RESULT($have_windows_ioprio)
|
||||
AM_CONDITIONAL([HAVE_WINDOWS_IOPRIO], [test "$have_windows_ioprio" = "yes"])
|
||||
|
||||
if test "$use_thread_local" = "yes" || test "$use_thread_local" = "auto"; then
|
||||
TEMP_LDFLAGS="$LDFLAGS"
|
||||
LDFLAGS="$TEMP_LDFLAGS $PTHREAD_CFLAGS"
|
||||
|
@ -1038,6 +1038,8 @@ bool BlockManager::ReadBlockFromDisk(CBlock& block, const FlatFilePos& pos, cons
|
||||
return error("ReadBlockFromDisk: OpenBlockFile failed for %s", pos.ToString());
|
||||
}
|
||||
|
||||
ioprio_set_file_idle(filein.Get());
|
||||
|
||||
// Read block
|
||||
try {
|
||||
filein >> TX_WITH_WITNESS(block);
|
||||
|
@ -55,3 +55,25 @@ int ioprio_set_idle() {
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef HAVE_WINDOWS_IOPRIO
|
||||
|
||||
#ifdef _WIN32_WINNT
|
||||
#undef _WIN32_WINNT
|
||||
#endif
|
||||
#define _WIN32_WINNT 0x0600
|
||||
|
||||
#include <windows.h>
|
||||
#include <io.h>
|
||||
|
||||
bool ioprio_set_file_idle(FILE * const F) {
|
||||
static const FILE_IO_PRIORITY_HINT_INFO priorityHint = {
|
||||
.PriorityHint = IoPriorityHintLow,
|
||||
};
|
||||
HANDLE hFile = _get_osfhandle(_fileno(F));
|
||||
|
||||
return SetFileInformationByHandle(hFile, FileIoPriorityHintInfo, &priorityHint, sizeof(priorityHint));
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -54,4 +54,10 @@ public:
|
||||
#define IOPRIO_IDLER(lowprio) (void)lowprio;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_WINDOWS_IOPRIO
|
||||
bool ioprio_set_file_idle(FILE *);
|
||||
#else
|
||||
#define ioprio_set_file_idle(f) ((void)false)
|
||||
#endif
|
||||
|
||||
#endif // BITCOIN_UTIL_IOPRIO_H
|
||||
|
Loading…
Reference in New Issue
Block a user