[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:
committed by
Travis Geiselbrecht
parent
efe4f94bbf
commit
0eba11d485
@@ -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");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user