[kernel][thread] Switch tls entries from uint32_t to uintptr_t

Allows storing a pointer in a tls slot on 64 bit systems.

Change-Id: I47f58e27c5625945c6aeca054eb463fd3c89ac45
This commit is contained in:
Arve Hjønnevåg
2014-11-10 16:57:20 -08:00
committed by Travis Geiselbrecht
parent efe4f94bbf
commit 0eba11d485
2 changed files with 5 additions and 5 deletions

View File

@@ -796,7 +796,7 @@ void dump_thread(thread_t *t)
dprintf(INFO, "\ttls:");
int i;
for (i=0; i < MAX_TLS_ENTRY; i++) {
dprintf(INFO, " 0x%x", t->tls[i]);
dprintf(INFO, " 0x%lx", t->tls[i]);
}
dprintf(INFO, "\n");
}