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]
Other format: [Raw text]

Re: ramfs problems


Hi Robin,

>Don't know if it's related but did you apply this fix to fread.cxx?
>
>  http://sources.redhat.com/ml/ecos-discuss/2002-02/msg00120.html

This has immediately fixed this ramfs problem!

Thanks a lot for your kind help!!!

What remains is the other problem, that a thread blocked by fgetc() on
serial line causes lockup of fread() access on ramfs by another thread.

I remember an earlier problem that came from the conjunction of
Cyg_StdioStream::refill_read_buffer() and cyg_libc_stdio_flush_all_but().
The former routine locks the stream and calls cyg_stdio_read() which blocks
on a condition variable, waiting for characters coming from the underlying
device. Then, the other thread calls something that implies
cyg_libc_stdio_flush_all_but() which spins trying to flush the other
(locked) stream. IIRC fread() implies cyg_libc_stdio_flush_all_but(), so
that would explain it.

Bye, Peter



-- 
Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos
and search the list archive: http://sources.redhat.com/ml/ecos-discuss


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