mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-23 10:51:04 +00:00
Remove "thread_ctrl::spawn"
This commit is contained in:
parent
18db020b93
commit
8b4b859091
3 changed files with 9 additions and 12 deletions
|
@ -286,13 +286,6 @@ public:
|
|||
|
||||
// Sets the preferred affinity mask for this thread
|
||||
static void set_thread_affinity_mask(u64 mask);
|
||||
|
||||
// Spawn a detached named thread
|
||||
template <typename F>
|
||||
[[deprecated]] static void spawn(std::string_view name, F&& func)
|
||||
{
|
||||
new named_thread<F>(thread_state::detached, name, std::forward<F>(func));
|
||||
}
|
||||
};
|
||||
|
||||
// Derived from the callable object Context, possibly a lambda
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue