mirror of https://github.com/xemu-project/xemu.git
linux-user: spelling fixes: othe, necesary
Fixes:e34136d930
"linux-user/ppc: Add vdso" Fixes:86f04735ac
"linux-user: Fix brk() to release pages" Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
9bfba08a1f
commit
2cf91b9ae6
|
@ -227,7 +227,7 @@ endf __kernel_sigtramp_rt
|
||||||
#ifndef _ARCH_PPC64
|
#ifndef _ARCH_PPC64
|
||||||
/*
|
/*
|
||||||
* The non-rt sigreturn has the same layout at a different offset.
|
* The non-rt sigreturn has the same layout at a different offset.
|
||||||
* Move the CFA and leave all othe other descriptions the same.
|
* Move the CFA and leave all the other descriptions the same.
|
||||||
*/
|
*/
|
||||||
.cfi_def_cfa 1, SIGNAL_FRAMESIZE + offsetof_sigframe_mcontext
|
.cfi_def_cfa 1, SIGNAL_FRAMESIZE + offsetof_sigframe_mcontext
|
||||||
nop
|
nop
|
||||||
|
|
|
@ -831,7 +831,7 @@ abi_long do_brk(abi_ulong brk_val)
|
||||||
return target_brk;
|
return target_brk;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Release heap if necesary */
|
/* Release heap if necessary */
|
||||||
if (new_brk < old_brk) {
|
if (new_brk < old_brk) {
|
||||||
target_munmap(new_brk, old_brk - new_brk);
|
target_munmap(new_brk, old_brk - new_brk);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue