kernel/thread: Make GetFreeThreadLocalSlot() internally linked

This function isn't used outside of this translation unit, so we can
make it internally linked.
This commit is contained in:
Lioncash 2018-08-02 11:54:20 -04:00 committed by zhupengfei
parent 5e658efdb8
commit c71c9e63ec
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ static void DebugThreadQueue() {
* slot: The index of the first free slot in the indicated page.
* alloc_needed: Whether there's a need to allocate a new TLS page (All pages are full).
*/
std::tuple<u32, u32, bool> GetFreeThreadLocalSlot(std::vector<std::bitset<8>>& tls_slots) {
static std::tuple<u32, u32, bool> GetFreeThreadLocalSlot(std::vector<std::bitset<8>>& tls_slots) {
// Iterate over all the allocated pages, and try to find one where not all slots are used.
for (unsigned page = 0; page < tls_slots.size(); ++page) {
const auto& page_tls_slots = tls_slots[page];