This is the mail archive of the
ecos-discuss@sources.redhat.com
mailing list for the eCos project.
Re: struct proc
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