summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/service_thread.h
blob: 6a7fd7c56f486a943ac777e463ce6176eee37777 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2020 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <memory>
#include <string>

namespace Kernel {

class HLERequestContext;
class KernelCore;
class KSession;

class ServiceThread final {
public:
    explicit ServiceThread(KernelCore& kernel, std::size_t num_threads, const std::string& name);
    ~ServiceThread();

    void QueueSyncRequest(KSession& session, std::shared_ptr<HLERequestContext>&& context);

private:
    class Impl;
    std::unique_ptr<Impl> impl;
};

} // namespace Kernel