This is the mail archive of the ecos-discuss@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Multi-Threaded Program in eCos


Timothy Chow wrote:

> Hello,
>
> I am working on a custom SA1100-based device running
> eCos. I have some problem with multi-threaded
> programs.
>
> I usually have 4 or more threads in a program. Some of
> them are threads for device drivers, so usually they
> are all endless loops (i.e. while(1) {...}).
>
> I have the same priority for every thread, but
> difference thread delay for the while loop in each
> thread. Even if a thread/loop needs to run
> continuously, I will add "cyg_thread_delay(1)" after
> each loop to let the scheduler run.

  Why don't you use cyg_thread_yield() instead of cyg_thread_delay. In this
way, once a thread has completed its work it will rotate in the queue of
threads of the same priority.




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]