Re: [oss-devel] gen_driver_[OS].inc

2009-11-25 Thread Hannu Savolainen
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

Re: [oss-devel] gen_driver_[OS].inc

2009-11-22 Thread demetrioussharpe
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

Re: [oss-devel] gen_driver_[OS].inc

2009-11-18 Thread Hannu Savolainen
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 >

Re: [oss-devel] gen_driver_[OS].inc

2009-11-15 Thread demetrioussharpe
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

Re: [oss-devel] gen_driver_[OS].inc

2009-11-15 Thread penma
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

Re: [oss-devel] gen_driver_[OS].inc

2009-11-15 Thread demetrioussharpe
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

Re: [oss-devel] gen_driver_[OS].inc

2009-11-15 Thread Yair K.
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

[oss-devel] gen_driver_[OS].inc

2009-11-15 Thread demetrioussharpe
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? __