summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_worker_task.h
blob: 9a230c03c4249be8e85efb37bf24c264413f472e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "core/hle/kernel/k_synchronization_object.h"

namespace Kernel {

class KWorkerTask : public KSynchronizationObject {
public:
    explicit KWorkerTask(KernelCore& kernel);

    void DoWorkerTask();
};

} // namespace Kernel