From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Lunn To: David.Karlberg@combitechsystems.com Cc: ecos-discuss@sources.redhat.com Subject: Re: [ECOS] struct proc Date: Thu, 30 Aug 2001 08:39:00 -0000 Message-id: <20010830173852.D5751@biferten.ma.tech.ascom.ch> References: <2253171AF143D21185A60000F8FA748B03795E2E@pluto.combitech.se> X-SW-Source: 2001-08/msg00944.html On Thu, Aug 30, 2001 at 05:32:04PM +0200, David.Karlberg@combitechsystems.com wrote: > Hi, > > I am working with the TCP/IP stack and I see a lot of > > struct proc > > but I cant seem to find where it is defined. I don't think it is defined anywhere. We don't have processes in eCos, only threads. Any code that tries to use proc should of been removed thus: #ifndef __ECOS struct proc *p = curproc; /* XXX */ #endif Andrew