From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <47ECF601.90107@domain.hid> Date: Fri, 28 Mar 2008 14:43:29 +0100 From: Philippe Gerum MIME-Version: 1.0 References: <20080328120645.GA31103@domain.hid> In-Reply-To: <20080328120645.GA31103@domain.hid> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: Philippe Gerum Subject: Re: [Xenomai-core] [SOLO] [PATCH] Missing symbols in pSOS emulation Reply-To: rpm@xenomai.org List-Id: "Xenomai life and development \(bug reports, patches, discussions\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: jserv@domain.hid Cc: xenomai@xenomai.org jserv@domain.hid wrote: > Hello list, > > This patch fixes build errors of Xenomai/SOLO pSOS emulation due to > missing symbols. > > Regards, > -jserv > > diff --git a/psos/pt.c b/psos/pt.c > index 4e42a76..69d41dd 100644 > --- a/psos/pt.c > +++ b/psos/pt.c > @@ -44,6 +44,8 @@ pt->bitmap[((n) / (sizeof(u_long) * 8))] > #define pt_bitmap_tstbit(pt,n) \ > (pt_bitmap_pos(pt,n) & pt_block_pos(n)) > > +struct hash_table psos_pt_table; > + > static struct psos_pt *get_pt_from_id(u_long ptid, int *err_r) > { > struct psos_pt *pt = (struct psos_pt *)ptid; > diff --git a/psos/rn.c b/psos/rn.c > index efe9e27..62529c2 100644 > --- a/psos/rn.c > +++ b/psos/rn.c > @@ -29,6 +29,8 @@ > > #define rn_magic 0x8181efef > > +struct hash_table psos_rn_table; > + > static struct psos_rn *get_rn_from_id(u_long rnid, int *err_r) > { > struct psos_rn *rn = (struct psos_rn *)rn; > Merged, thanks. -- Philippe.