Core/Memory: Add TLS support for creating up to 300 threads
This commit is contained in:
parent
820b97787c
commit
dda94e56dd
4 changed files with 23 additions and 9 deletions
|
@ -74,6 +74,9 @@ public:
|
|||
/// The id of this process
|
||||
u32 process_id = next_process_id++;
|
||||
|
||||
/// Bitmask of the used TLS slots
|
||||
std::bitset<300> used_tls_slots;
|
||||
|
||||
/**
|
||||
* Parses a list of kernel capability descriptors (as found in the ExHeader) and applies them
|
||||
* to this process.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue