37 lines
991 B
C++
37 lines
991 B
C++
// *****************************************************************************
|
|
// * This file is part of the FreeFileSync project. It is distributed under *
|
|
// * GNU General Public License: https://www.gnu.org/licenses/gpl-3.0 *
|
|
// * Copyright (C) Zenju (zenju AT freefilesync DOT org) - All Rights Reserved *
|
|
// *****************************************************************************
|
|
|
|
#ifndef PROCESS_PRIORITY_H_83421759082143245
|
|
#define PROCESS_PRIORITY_H_83421759082143245
|
|
|
|
#include <memory>
|
|
#include "file_error.h"
|
|
|
|
|
|
namespace zen
|
|
{
|
|
enum class ProcessPriority
|
|
{
|
|
normal,
|
|
background, //lower CPU and file I/O priorities
|
|
};
|
|
|
|
//- prevent operating system going into sleep state
|
|
//- set process I/O priorities
|
|
class SetProcessPriority
|
|
{
|
|
public:
|
|
explicit SetProcessPriority(ProcessPriority prio); //throw FileError
|
|
~SetProcessPriority();
|
|
|
|
private:
|
|
struct Impl;
|
|
const std::unique_ptr<Impl> pimpl_;
|
|
};
|
|
}
|
|
|
|
#endif //PROCESS_PRIORITY_H_83421759082143245
|