diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-08-10 15:31:52 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-08-10 15:31:52 +0200 |
| commit | 53fb83487a1902db838f99e94bb81e1cb597e6a7 (patch) | |
| tree | b556ca62846b39cabfc9ffd3641f59f0f4c121e4 | |
| parent | 3597284e8d9891e6d9714d5876a33ca174e4ae3c (diff) | |
| download | box64-53fb83487a1902db838f99e94bb81e1cb597e6a7.tar.gz box64-53fb83487a1902db838f99e94bb81e1cb597e6a7.zip | |
Added some comment on vDSO
| -rwxr-xr-x | src/tools/box64stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/box64stack.c b/src/tools/box64stack.c index cfc778ae..9a5ca602 100755 --- a/src/tools/box64stack.c +++ b/src/tools/box64stack.c @@ -167,7 +167,7 @@ void SetupInitialStack(x64emu_t *emu) Push(emu, p_random); Push(emu, 25); //AT_RANDOM(25)=p_random Push(emu, 0); Push(emu, 26); //AT_HWCAP2(26)=0 Push(emu, p_arg0); Push(emu, 31); //AT_EXECFN(31)=p_arg0 - //Push(emu, ); Push(emu, 33); //AT_SYSINFO_EHDR(33)=address of vDSO + //Push(emu, 0); Push(emu, 33); //AT_SYSINFO_EHDR(33)=address of vDSO if(!emu->context->auxval_start) // store auxval start if needed emu->context->auxval_start = (uintptr_t*)R_RSP; |