demetrioussha...@netscape.net wrote:
> Is gen_driver_[OS].inc used by anything other than srcconf??? Does it
> affect any other part of the OSS stack?
>
It doesn't affect anything else than srcconf.
However the code generated by gen_driver.inc gets compiled and linked to
the kernel space.
Best
Is gen_driver_[OS].inc used by anything other than srcconf??? Does it affect
any other part of the OSS stack?
-Original Message-
From: Hannu Savolainen
To: Discussion mailing list for developers of OSS
Sent: Wed, Nov 18, 2009 12:34 pm
Subject: Re: [oss-devel] gen_driver_[OS
Hi,
You should add this kind of includes in the beginning of the .inc file.
Best regards,
Hannu
-
demetrioussha...@netscape.net wrote:
> No, I didn'twhere should I be plugging it in at? Within
> generate_driver() or outside of it?
>
> Dee
>
i added stdbool.h to gen_driver_[os].inc
-Original Message-
From: pe...@penma.de
To: Discussion mailing list for developers of OSS
Sent: Sun, Nov 15, 2009 1:11 pm
Subject: Re: [oss-devel] gen_driver_[OS].inc
On Sunday 15 November 2009 19:53:01 demetrioussha
On Sunday 15 November 2009 19:53:01 demetrioussha...@netscape.net wrote:
> Is there a reason that I should expect to have a problem declaring a
> variable as a bool in this file?
Yes. The fact that C does not, unlike C++, has a "bool" type.
You can just as well use an "int". There is no differenc
No, I didn'twhere should I be plugging it in at? Within generate_driver()
or outside of it?
Dee
-Original Message-
From: Yair K.
To: oss-devel@mailman.opensound.com
Sent: Sun, Nov 15, 2009 12:03 pm
Subject: Re: [oss-devel] gen_driver_[OS].inc
On Sunday 15 Nov
On Sunday 15 November 2009 19:53:01 demetrioussha...@netscape.net wrote:
> Hello all,
>
> I just restarted my port of OSS v4.1 (build 1051) to Syllable. Is there a
> reason that I should expect to have a problem declaring a variable as a
> bool in this file?
>
> Offending code: bool bSubsyste
Hello all,
I just restarted my port of OSS v4.1 (build 1051) to Syllable. Is there a
reason that I should expect to have a problem declaring a variable as a bool in
this file?
Offending code: bool bSubsystem;
Error: error: 'bool' undeclared (first use in this function)
Any suggestions?
__