On Tuesday 05 April 2005 19:20, Rob Landley wrote:
> On Monday 04 April 2005 10:00 am, Jeff Dike wrote:
> > On Thu, Mar 31, 2005 at 06:03:34PM +0800, Alex LIU wrote:
> > > union uml_pt_regs {
> > > #ifdef UML_CONFIG_MODE_TT
> > > struct tt_regs {
> > > long syscall;
> > > void *sc;
> > > } tt
On Monday 04 April 2005 10:00 am, Jeff Dike wrote:
> On Thu, Mar 31, 2005 at 06:03:34PM +0800, Alex LIU wrote:
> > union uml_pt_regs {
> > #ifdef UML_CONFIG_MODE_TT
> > struct tt_regs {
> > long syscall;
> > void *sc;
> > } tt;
> > #endif
> > };
> > -
On Thu, Mar 31, 2005 at 06:03:34PM +0800, Alex LIU wrote:
> union uml_pt_regs {
> #ifdef UML_CONFIG_MODE_TT
> struct tt_regs {
> long syscall;
> void *sc;
> } tt;
> #endif
> };
> -
>
> Then why the tt.sc is defined as void
On Thursday 31 March 2005 12:03, Alex LIU wrote:
> Hi,all:
>
> I have a question about the sigcontext in tt mode.The union uml_pt_regs is
> defined as below(in uml-2.6.7):
>
>
> union uml_pt_regs {
> #ifdef UML_CONFIG_MODE_TT
> struct tt_regs {
> long syscall;
>
Hi,all:
I have a question about the sigcontext in tt mode.The union uml_pt_regs is
defined as below(in uml-2.6.7):
union uml_pt_regs {
#ifdef UML_CONFIG_MODE_TT
struct tt_regs {
long syscall;
void *sc;
} tt;
#endif