blob: 9602168be1a5f30cf12361c0a8bffbf50818f8ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Kernel {
class SyncTask {
public:
static void spawn();
};
}
|