Linux PARISC architecture development
 help / color / mirror / Atom feed
* [parisc-linux] Need five #defines, please.....
@ 2002-01-04  9:25 Christian Suder
  2002-01-04 10:51 ` kenneth westelinck
  2002-01-04 22:31 ` Thomas Bogendoerfer
  0 siblings, 2 replies; 5+ messages in thread
From: Christian Suder @ 2002-01-04  9:25 UTC (permalink / raw)
  To: parisc-linux

Ok,


I'm trying to skin the lizard (mozilla 0.9.7). I can build with the linux
default pthreads, but it doesn' work, windows show up but the content is
not drawn etc.. Hence I'd like to try a build with "classic" NSPR, which
implements it's own threading mechanism. Problem : There is a couple of
hardware-specific definitions that I don't know how to do, but somebody
with some insight in parisc-linux may be able to put it down in 5 minutes
(I hope..). Or maybe it has been solved it already ? 

Here's what I'm missing : 

#elif defined(__hppa__)
/* parisc */    
#define _MD_GET_SP(_t) 
#define _MD_SET_FP(_t, val)
#define _MD_GET_SP_PTR(_t) 
#define _MD_GET_FP_PTR(_t)
#define _MD_SP_TYPE 

As a hint, here some existing defines. As far as my limited incompetence
can tell these provide access to some of the context information of the
threads :

/* Sparc */  
#define _MD_GET_SP(_t) (_t)->md.context[0].__jmpbuf[JB_SP]
#define _MD_SET_FP(_t, val) ((_t)->md.context[0].__jmpbuf[JB_FP] = val)
#define _MD_GET_SP_PTR(_t) &(_MD_GET_SP(_t))
#define _MD_GET_FP_PTR(_t) (&(_t)->md.context[0].__jmpbuf[JB_FP])
#define _MD_SP_TYPE int

/* Alpha based Linux */
#define _MD_GET_SP(_t) (_t)->md.context[0].__jmpbuf[JB_SP]
#define _MD_SET_FP(_t, val)
#define _MD_GET_SP_PTR(_t) &(_MD_GET_SP(_t))
#define _MD_GET_FP_PTR(_t) ((void *) 0)
#define _MD_SP_TYPE long int


/* Intel based Linux */ 
#define _MD_GET_SP(_t) (_t)->md.context[0].__jmpbuf[JB_SP]
#define _MD_SET_FP(_t, val) ((_t)->md.context[0].__jmpbuf[JB_BP] = val)
#define _MD_GET_SP_PTR(_t) &(_MD_GET_SP(_t))                           
#define _MD_GET_FP_PTR(_t) (&(_t)->md.context[0].__jmpbuf[JB_BP])         
     #define _MD_SP_TYPE int


Thanks,
	Christian 

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2002-01-05  1:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-01-04  9:25 [parisc-linux] Need five #defines, please Christian Suder
2002-01-04 10:51 ` kenneth westelinck
2002-01-04 22:31 ` Thomas Bogendoerfer
2002-01-04 23:58   ` Christian Suder
2002-01-05  1:36     ` Thomas Bogendoerfer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox