On Sun, 14 Mar 2010, malc wrote:
> On Sun, 14 Mar 2010, Paul Brook wrote:
>
> > > On Sat, 13 Mar 2010, Paul Brook wrote:
> > > > > a) elfload.c:859
> > > > >
> > > > >#define TARGET_ELF_PAGESTART(_v) ((_v) & ~(unsigned
> > > > > long)(TARGET_ELF_EXEC_PAGESIZE-1))
> > > > >
> > > > >This
On Sun, 14 Mar 2010, Paul Brook wrote:
> > On Sat, 13 Mar 2010, Paul Brook wrote:
> > > > a) elfload.c:859
> > > >
> > > >#define TARGET_ELF_PAGESTART(_v) ((_v) & ~(unsigned
> > > > long)(TARGET_ELF_EXEC_PAGESIZE-1))
> > > >
> > > >This means that for 64bit guest on a 32bit host the _v's
> On Sat, 13 Mar 2010, Paul Brook wrote:
> > > a) elfload.c:859
> > >
> > >#define TARGET_ELF_PAGESTART(_v) ((_v) & ~(unsigned
> > > long)(TARGET_ELF_EXEC_PAGESIZE-1))
> > >
> > >This means that for 64bit guest on a 32bit host the _v's value is
> > >silently reduced to 32bit, the cast
On Sat, 13 Mar 2010, Paul Brook wrote:
> > a) elfload.c:859
> >
> >#define TARGET_ELF_PAGESTART(_v) ((_v) & ~(unsigned
> > long)(TARGET_ELF_EXEC_PAGESIZE-1))
> >
> >This means that for 64bit guest on a 32bit host the _v's value is
> >silently reduced to 32bit, the cast should be abi
> a) elfload.c:859
>
>#define TARGET_ELF_PAGESTART(_v) ((_v) & ~(unsigned
> long)(TARGET_ELF_EXEC_PAGESIZE-1))
>
>This means that for 64bit guest on a 32bit host the _v's value is
>silently reduced to 32bit, the cast should be abi_ulong.
>
> b) mmap.c:428
>
>real_start = start