You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/tests/binaries/host/tls.i386.c

10 lines
223 B
C

void *tls_address;
void break_here(void) {}
int main(){
// TODO: This only works for i386, we should support arm/aarch64 in the future
asm("movl %%gs:0, %0" : "=r" (tls_address));
break_here();
return 0;
}