public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
* [ECOS] kernel API
@ 2003-04-22 15:53 Koeller, T.
  2003-04-22 16:31 ` Grant Edwards
  2003-04-22 21:32 ` Jonathan Larmour
  0 siblings, 2 replies; 14+ messages in thread
From: Koeller, T. @ 2003-04-22 15:53 UTC (permalink / raw)
  To: ecos-discuss (E-Mail)

Hi,

the question of which kernel API is the one officially
supported has been discussed before. As I remember,
the result of all those discussions was that only the
C API, as defined in kapi.h, has the status of an
officially supported API, and using the C++ kernel
API directly is discouraged.

The way that kapidata.h and thread.hxx declare the
same things in different ways and require both
declarations to always be in sync contradicts just
about everything that is generally considered good
programming practice ;-) It is IMO an ugly kludge, error-
prone and has indeed caused the very problems one would
expect during the transition from gcc-2.x to gcc-3.x.

Now everyone programming for eCos has a C++ compiler,
and I am quite sure that a significant number of us
code their applications in C++ (at least I do). In
this case using the C API only complicates things; I
get additional overhead and the above-mentioned
problems, but no benefits at all.

For all the reasons listed above, I am raising the
topic again. My proposal is to award the status of
an officially supported API to the C++ kernel API, too.

tk
----------------------------------------------- 
Thomas Koeller, Software Development 

Basler Vision Technologies 
An der Strusbek 60-62 
22926 Ahrensburg 
Germany 

Tel +49 (4102) 463-390 
Fax +49 (4102) 463-46390

mailto:Thomas.Koeller@baslerweb.com 
http://www.baslerweb.com 



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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [ECOS] kernel API
  2003-04-22 15:53 [ECOS] kernel API Koeller, T.
@ 2003-04-22 16:31 ` Grant Edwards
  2003-04-22 21:32 ` Jonathan Larmour
  1 sibling, 0 replies; 14+ messages in thread
From: Grant Edwards @ 2003-04-22 16:31 UTC (permalink / raw)
  To: Koeller, T.; +Cc: ecos-discuss (E-Mail)

On Tue, Apr 22, 2003 at 05:42:16PM +0200, Koeller, T. wrote:

> Now everyone programming for eCos has a C++ compiler,
> and I am quite sure that a significant number of us
> code their applications in C++ (at least I do). In
> this case using the C API only complicates things; I
> get additional overhead and the above-mentioned
> problems, but no benefits at all.
> 
> For all the reasons listed above, I am raising the
> topic again. My proposal is to award the status of
> an officially supported API to the C++ kernel API, too.

FWIW, I know that several of my customers are using the C++
kernel API also.

-- 
Grant Edwards
grante@visi.com

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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [ECOS] kernel API
  2003-04-22 15:53 [ECOS] kernel API Koeller, T.
  2003-04-22 16:31 ` Grant Edwards
@ 2003-04-22 21:32 ` Jonathan Larmour
  2003-04-23 10:54   ` Sergei Organov
  1 sibling, 1 reply; 14+ messages in thread
From: Jonathan Larmour @ 2003-04-22 21:32 UTC (permalink / raw)
  To: Koeller, T.; +Cc: ecos-discuss (E-Mail)

Koeller, T. wrote:
> [snip]
> For all the reasons listed above, I am raising the
> topic again. My proposal is to award the status of
> an officially supported API to the C++ kernel API, too.

The problem is that we have to have flexibility to change how the kernel 
_implementation_ works, even if the _interface_ has to say the same. Right 
now the C++ stuff is just directly what is required by the implementation. 
Defining the internal API to be "official" will tie our hands unreasonably 
in the future if the API is to have any stability (and stability is one of 
the defining features of an API really!).

If there was a C++ API, it would have to be a separate veneer over the 
internal C++ API. In the first instance, using inline functions etc. this 
could be pretty much a  burden-free veneer over the internal C++ API, but 
if sensibly designed would give us the flexibility to change the 
implementation without worrying about messing up the interface.

So that _could_ be a slight improvement over the C API by removing some of 
the overhead. But no-one has yet done such a thing of course :-), and it 
_isn't_ just a case of defining one to the other since there does have to 
be some level of abstraction in order to hide the internals.

Given that people are either happy with the C API, or not too worried 
about using the internal C++ API directly, this hasn't been a priority for 
any of the main developers in the past. Personally I would have no 
objections to a sensibly designed C++ API that fulfilled the requirements 
above. Nick G obviously might have a little bit more to say in how it 
should be done of course ;-).

Jifl
-- 
eCosCentric    http://www.eCosCentric.com/    The eCos and RedBoot experts
--[ "You can complain because roses have thorns, or you ]--
--[  can rejoice because thorns have roses." -Lincoln   ]-- Opinions==mine


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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [ECOS] kernel API
  2003-04-22 21:32 ` Jonathan Larmour
@ 2003-04-23 10:54   ` Sergei Organov
  2003-04-23 14:32     ` Nick Garnett
  0 siblings, 1 reply; 14+ messages in thread
From: Sergei Organov @ 2003-04-23 10:54 UTC (permalink / raw)
  To: Jonathan Larmour; +Cc: Koeller, T., ecos-discuss (E-Mail)

Jonathan Larmour <jifl@eCosCentric.com> writes:

> Koeller, T. wrote:
> > [snip]
> > For all the reasons listed above, I am raising the
> > topic again. My proposal is to award the status of
> > an officially supported API to the C++ kernel API, too.
> 
> The problem is that we have to have flexibility to change how the kernel
> _implementation_ works, even if the _interface_ has to say the same. Right
> now the C++ stuff is just directly what is required by the implementation.
> Defining the internal API to be "official" will tie our hands unreasonably
> in the future if the API is to have any stability (and stability is one of
> the defining features of an API really!).

Besides, the C++ stuff has a rather boring deficiency. I do use C++ stuff
directly (through my own C++ wrappers), but I still can't find any reasonable
answer to the question why condvars and mutexes have been put into the same
header 'mutex.hxx'. I don't think anybody would expect to find a
'ConditionVariable' class in a 'mutex' header ;)

-- 
Sergei.


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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [ECOS] kernel API
  2003-04-23 10:54   ` Sergei Organov
@ 2003-04-23 14:32     ` Nick Garnett
  2003-04-23 16:43       ` Sergei Organov
  0 siblings, 1 reply; 14+ messages in thread
From: Nick Garnett @ 2003-04-23 14:32 UTC (permalink / raw)
  To: Sergei Organov; +Cc: Jonathan Larmour, Koeller, T., ecos-discuss (E-Mail)

Sergei Organov <osv@javad.ru> writes:

> Jonathan Larmour <jifl@eCosCentric.com> writes:
> 
> > Koeller, T. wrote:
> > > [snip]
> > > For all the reasons listed above, I am raising the
> > > topic again. My proposal is to award the status of
> > > an officially supported API to the C++ kernel API, too.
> > 
> > The problem is that we have to have flexibility to change how the kernel
> > _implementation_ works, even if the _interface_ has to say the same. Right
> > now the C++ stuff is just directly what is required by the implementation.
> > Defining the internal API to be "official" will tie our hands unreasonably
> > in the future if the API is to have any stability (and stability is one of
> > the defining features of an API really!).
> 
> Besides, the C++ stuff has a rather boring deficiency. I do use C++ stuff
> directly (through my own C++ wrappers), but I still can't find any reasonable
> answer to the question why condvars and mutexes have been put into the same
> header 'mutex.hxx'. I don't think anybody would expect to find a
> 'ConditionVariable' class in a 'mutex' header ;)
> 

The implementations are in the same file, so they also share a header.
This is because they constitute a single synchronization mechanism,
and therefore belong together. 

-- 
Nick Garnett                    eCos Kernel Architect
http://www.ecoscentric.com/     The eCos and RedBoot experts


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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [ECOS] kernel API
  2003-04-23 14:32     ` Nick Garnett
@ 2003-04-23 16:43       ` Sergei Organov
  2003-04-23 16:51         ` Jonathan Larmour
  0 siblings, 1 reply; 14+ messages in thread
From: Sergei Organov @ 2003-04-23 16:43 UTC (permalink / raw)
  To: Nick Garnett; +Cc: Jonathan Larmour, Koeller, T., ecos-discuss (E-Mail)

Nick Garnett <nickg@eCosCentric.com> writes:

> Sergei Organov <osv@javad.ru> writes:
[...]
> > Besides, the C++ stuff has a rather boring deficiency. I do use C++ stuff
> > directly (through my own C++ wrappers), but I still can't find any
> > reasonable answer to the question why condvars and mutexes have been put
> > into the same header 'mutex.hxx'. I don't think anybody would expect to
> > find a 'ConditionVariable' class in a 'mutex' header ;)
> > 
> 
> The implementations are in the same file, so they also share a header.

IMHO that's also a mistake though I don't care much where implementations are.
I don't like the situation when all source files that use mutexes but don't
use condvars are polluted with the condvars declarations.

> This is because they constitute a single synchronization mechanism,
> and therefore belong together.

I'd agree if one couldn't be used without another. However, while condvars
indeed can't be used without mutexes, mutexes are pretty useful without
condvars, so IMHO the most straightforward and correct approach is to have
separate 'mutex.cxx/mutex.hxx' and 'condvar.cxx/condvar.hxx', where either
'condvar.cxx' or 'condvar.hxx' includes 'mutex.hxx'.

-- 
Sergei.


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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [ECOS] kernel API
  2003-04-23 16:43       ` Sergei Organov
@ 2003-04-23 16:51         ` Jonathan Larmour
  2003-04-24  9:15           ` Sergei Organov
  0 siblings, 1 reply; 14+ messages in thread
From: Jonathan Larmour @ 2003-04-23 16:51 UTC (permalink / raw)
  To: Sergei Organov; +Cc: Nick Garnett, Koeller, T., ecos-discuss (E-Mail)

Sergei Organov wrote:
> Nick Garnett <nickg@eCosCentric.com> writes:
> 
> 
>>Sergei Organov <osv@javad.ru> writes:
> 
> [...]
> 
>>>Besides, the C++ stuff has a rather boring deficiency. I do use C++ stuff
>>>directly (through my own C++ wrappers), but I still can't find any
>>>reasonable answer to the question why condvars and mutexes have been put
>>>into the same header 'mutex.hxx'. I don't think anybody would expect to
>>>find a 'ConditionVariable' class in a 'mutex' header ;)
>>>
>>
>>The implementations are in the same file, so they also share a header.
> 
> IMHO that's also a mistake though I don't care much where implementations are.
> I don't like the situation when all source files that use mutexes but don't
> use condvars are polluted with the condvars declarations.

I think you mean it might be a mistake if it was an official API ;-P. 
Although "polluted" is overstating it anyway. Namespacing is something 
unfortunately eCos has been very very lax about. Just try and declare "int 
interrupt_end;" in any application at least!

Jifl
-- 
eCosCentric    http://www.eCosCentric.com/    The eCos and RedBoot experts
--[ "You can complain because roses have thorns, or you ]--
--[  can rejoice because thorns have roses." -Lincoln   ]-- Opinions==mine


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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [ECOS] kernel API
  2003-04-23 16:51         ` Jonathan Larmour
@ 2003-04-24  9:15           ` Sergei Organov
  2003-04-24  9:35             ` [ECOS] Error with ARM cross-compiler Giovanni Perbellini
  0 siblings, 1 reply; 14+ messages in thread
From: Sergei Organov @ 2003-04-24  9:15 UTC (permalink / raw)
  To: Jonathan Larmour; +Cc: Nick Garnett, Koeller, T., ecos-discuss (E-Mail)

Jonathan Larmour <jifl@eCosCentric.com> writes:
> Sergei Organov wrote:
> > Nick Garnett <nickg@eCosCentric.com> writes:
> >>Sergei Organov <osv@javad.ru> writes:
> > [...]
> >>>Besides, the C++ stuff has a rather boring deficiency. I do use C++ stuff
> >>>directly (through my own C++ wrappers), but I still can't find any
> >>>reasonable answer to the question why condvars and mutexes have been put
> >>>into the same header 'mutex.hxx'. I don't think anybody would expect to
> >>>find a 'ConditionVariable' class in a 'mutex' header ;)
> >>>
> >>
> >>The implementations are in the same file, so they also share a header.
> > IMHO that's also a mistake though I don't care much where implementations
> > are.
> 
> > I don't like the situation when all source files that use mutexes but don't
> > use condvars are polluted with the condvars declarations.
> 
> I think you mean it might be a mistake if it was an official API ;-P.

I definitely meant it's a mistake by itself though its significance is
proportional to the number of source files that use mutexes but no condvars.
It's indeed not a big deal unless it's not an official API, so I mentioned
it in this particular thread.

> Although "polluted" is overstating it anyway.

Probably. English is not my mother's language so I may choose wrong terms
sometimes, sorry. In fact I meant I don't like unnecessary compile-time
dependencies.

> Namespacing is something unfortunately eCos has been very very lax about.
> Just try and declare "int interrupt_end;" in any application at least!

I use interruptEnd (sometimes referred to as "camel") naming convention that
doesn't interfere with most of libraries ;) though I thought eCos has been very
careful about adding cyg_/CYG_ prefix everywhere.

-- 
Sergei.


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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [ECOS] Error with ARM cross-compiler
  2003-04-24  9:15           ` Sergei Organov
@ 2003-04-24  9:35             ` Giovanni Perbellini
  2003-04-24 11:22               ` QiangHuang
  2003-04-28 10:21               ` [ECOS] Reading txt file Giovanni Perbellini
  0 siblings, 2 replies; 14+ messages in thread
From: Giovanni Perbellini @ 2003-04-24  9:35 UTC (permalink / raw)
  To: ecos-discuss

Hi all
I'm compiling a file with the ARM cross-compiler and I get this error:


arm-elf-gcc -nostartfiles -L/opt/ecos/work/arm7_AEB_all_install/lib
-Ttarget.ld -mcpu=arm7tdmi -mno-short-load-words -Wl,--gc-sections
-Wl,-static -g -nostdlib -o run_fft main.o source.o sink.o fft.o/opt/ecos/gnutools/arm-elf/bin/../lib/gcc-lib/arm-elf/3.2.1/../../../../arm-elf/bin/ld:
address 0x8af64 of run_fft section .bss is not within region ramcollect2: ld returned 1 exit status
make: *** [run_fft] Error 1


What does it mean?

Thanks in advance
Best regards
Giovanni



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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* RE: [ECOS] Error with ARM cross-compiler
  2003-04-24  9:35             ` [ECOS] Error with ARM cross-compiler Giovanni Perbellini
@ 2003-04-24 11:22               ` QiangHuang
  2003-04-28 10:21               ` [ECOS] Reading txt file Giovanni Perbellini
  1 sibling, 0 replies; 14+ messages in thread
From: QiangHuang @ 2003-04-24 11:22 UTC (permalink / raw)
  To: Giovanni Perbellini; +Cc: Ecos-Discuss

I think the memory is not big enough. (memory layout)

-----Original Message-----
From: ecos-discuss-owner@sources.redhat.com
[mailto:ecos-discuss-owner@sources.redhat.com]On Behalf Of Giovanni
Perbellini
Sent: 24 April 2003 10:15
To: ecos-discuss@sources.redhat.com
Subject: [ECOS] Error with ARM cross-compiler


Hi all
I'm compiling a file with the ARM cross-compiler and I get this error:


arm-elf-gcc -nostartfiles -L/opt/ecos/work/arm7_AEB_all_install/lib
-Ttarget.ld -mcpu=arm7tdmi -mno-short-load-words -Wl,--gc-sections
-Wl,-static -g -nostdlib -o run_fft main.o source.o sink.o
fft.o/opt/ecos/gnutools/arm-elf/bin/../lib/gcc-lib/arm-elf/3.2.1/../../../..
/arm-elf/bin/ld:
address 0x8af64 of run_fft section .bss is not within region ramcollect2: ld
returned 1 exit status
make: *** [run_fft] Error 1


What does it mean?

Thanks in advance
Best regards
Giovanni



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


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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [ECOS] Reading txt file
  2003-04-24  9:35             ` [ECOS] Error with ARM cross-compiler Giovanni Perbellini
  2003-04-24 11:22               ` QiangHuang
@ 2003-04-28 10:21               ` Giovanni Perbellini
  2003-04-28 11:30                 ` Andrew Lunn
  1 sibling, 1 reply; 14+ messages in thread
From: Giovanni Perbellini @ 2003-04-28 10:21 UTC (permalink / raw)
  To: ecos-discuss

Hi all,
I have a simple program to read from text file.
This is the source code:

source.h

#include <stdio.h>
class source {
	public:
		source();
		FILE *fp_real;
		FILE *fp_imag;
		bool getValue(float *real, float *imag);
};

source.cc

#include "source.h"
source::source() {
	fp_real = fopen("in_real", "r");
	fp_imag = fopen("in_imag", "r");
}
bool source::getValue(float *real, float *imag) {
	bool bool_eof;
	bool_eof = true;
    if (fscanf(fp_real,"%f \n",real) == EOF) {
		//cout << "End of Input Stream: Simulation Stops" << endl;
		bool_eof = false;
	};
    if (fscanf(fp_imag,"%f \n",imag) == EOF){
		//cout << "End of Input Stream: Simulation Stops" << endl;
		bool_eof = false;
	};
	return bool_eof;
}

I compile the file without problem, but when I simulate the file with
arm-elf-gdb (target sim) I get a problem when I read, using fscanf, from
file....the program stops!Where is the error?

Thanks in advance
Best regards.
Giovanni Perbellini



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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [ECOS] Reading txt file
  2003-04-28 10:21               ` [ECOS] Reading txt file Giovanni Perbellini
@ 2003-04-28 11:30                 ` Andrew Lunn
       [not found]                   ` <010a01c30d89$98e43880$85f21b9d@CDC03>
  0 siblings, 1 reply; 14+ messages in thread
From: Andrew Lunn @ 2003-04-28 11:30 UTC (permalink / raw)
  To: Giovanni Perbellini; +Cc: ecos-discuss

On Mon, Apr 28, 2003 at 11:56:33AM +0200, Giovanni Perbellini wrote:
> Hi all,
> I have a simple program to read from text file.
> This is the source code:
> 
> source.h
> 
> #include <stdio.h>
> class source {
> 	public:
> 		source();
> 		FILE *fp_real;
> 		FILE *fp_imag;
> 		bool getValue(float *real, float *imag);
> };
> 
> source.cc
> 
> #include "source.h"
> source::source() {
> 	fp_real = fopen("in_real", "r");
> 	fp_imag = fopen("in_imag", "r");
> }
> bool source::getValue(float *real, float *imag) {
> 	bool bool_eof;
> 	bool_eof = true;
>     if (fscanf(fp_real,"%f \n",real) == EOF) {
> 		//cout << "End of Input Stream: Simulation Stops" << endl;
> 		bool_eof = false;
> 	};
>     if (fscanf(fp_imag,"%f \n",imag) == EOF){
> 		//cout << "End of Input Stream: Simulation Stops" << endl;
> 		bool_eof = false;
> 	};
> 	return bool_eof;
> }
> 
> I compile the file without problem, but when I simulate the file with
> arm-elf-gdb (target sim) I get a problem when I read, using fscanf, from
> file....the program stops!Where is the error?

What filesystem are you using? I presume its a ROM fs? How do you load
the contents of the filesystem? Do you remember to mount the
filesystem?

Also, this list is here to help you debug your own problems. You have
to show us what you have found out and we can help you interpret the
information. So, information like, where does it stop? Does it at
least call fopen? Do fopen return an error? The more information you
give us the better.

     Andrew

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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [ECOS] Reading txt file
       [not found]                   ` <010a01c30d89$98e43880$85f21b9d@CDC03>
@ 2003-04-28 17:23                     ` Andrew Lunn
  2003-05-01  1:19                       ` Jonathan Larmour
  0 siblings, 1 reply; 14+ messages in thread
From: Andrew Lunn @ 2003-04-28 17:23 UTC (permalink / raw)
  To: Giovanni Perbellini; +Cc: eCos Disuss

On Mon, Apr 28, 2003 at 03:25:12PM +0200, Giovanni Perbellini wrote:
> I forgot to run the filesystem!
> Have I to use the "mount" function before to open the file?
> What is the syntax for this command? How do I let know the filesystem type
> for my configuration (I have to execute my example on ARM7 - target sim)?

You need to read
http://sources.redhat.com/ecos/docs-latest/ref/fileio.html &
packages/fs/rom/current/doc/*.txt

        Andrew

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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [ECOS] Reading txt file
  2003-04-28 17:23                     ` Andrew Lunn
@ 2003-05-01  1:19                       ` Jonathan Larmour
  0 siblings, 0 replies; 14+ messages in thread
From: Jonathan Larmour @ 2003-05-01  1:19 UTC (permalink / raw)
  To: Andrew Lunn; +Cc: Giovanni Perbellini, eCos Disuss

Andrew Lunn wrote:
> On Mon, Apr 28, 2003 at 03:25:12PM +0200, Giovanni Perbellini wrote:
> 
>>I forgot to run the filesystem!
>>Have I to use the "mount" function before to open the file?
>>What is the syntax for this command? How do I let know the filesystem type
>>for my configuration (I have to execute my example on ARM7 - target sim)?
> 
> 
> You need to read
> http://sources.redhat.com/ecos/docs-latest/ref/fileio.html &
> packages/fs/rom/current/doc/*.txt

More interesting is that he talks about the ARM simulator.... but eCos 
hasn't been ported to that yet! Perhaps Giovanni isn't talking about an 
eCos application at all?

Jifl
-- 
eCosCentric    http://www.eCosCentric.com/    The eCos and RedBoot experts
--[ "You can complain because roses have thorns, or you ]--
--[  can rejoice because thorns have roses." -Lincoln   ]-- Opinions==mine


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

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2003-05-01  1:19 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-22 15:53 [ECOS] kernel API Koeller, T.
2003-04-22 16:31 ` Grant Edwards
2003-04-22 21:32 ` Jonathan Larmour
2003-04-23 10:54   ` Sergei Organov
2003-04-23 14:32     ` Nick Garnett
2003-04-23 16:43       ` Sergei Organov
2003-04-23 16:51         ` Jonathan Larmour
2003-04-24  9:15           ` Sergei Organov
2003-04-24  9:35             ` [ECOS] Error with ARM cross-compiler Giovanni Perbellini
2003-04-24 11:22               ` QiangHuang
2003-04-28 10:21               ` [ECOS] Reading txt file Giovanni Perbellini
2003-04-28 11:30                 ` Andrew Lunn
     [not found]                   ` <010a01c30d89$98e43880$85f21b9d@CDC03>
2003-04-28 17:23                     ` Andrew Lunn
2003-05-01  1:19                       ` Jonathan Larmour

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).