Re: aio support in uClibc ?

2011-09-16 Thread Carmelo AMOROSO
On 11/09/2011 12.31, νιкαѕ gαнℓαη wrote: We are using uclibc environment in our embedded project. I am trying to use Qualcom 3G modem in our system. The modem SDK has libraries which are using aio support. In uclibc , I didn't find aio functions. I have seen a aio patch from Cristi

Re: aio support in uClibc ?

2011-09-16 Thread νιкαѕ gαнℓαη
I am integrating Qualcom 3G device in our Linux/ARM based system and Qualcomm protocol lib uses aio_* functions. probably it got ported them from windows directly. Qualcomm drivers support aio , so I was looking out in uclibc for aio support. I have got one patch but that only contains stubs

Re: aio support in uClibc ?

2011-09-16 Thread Rich Felker
On Fri, Sep 16, 2011 at 12:38:38PM +0200, Carmelo AMOROSO wrote: On 11/09/2011 12.31, νιкαѕ gαнℓαη wrote: We are using uclibc environment in our embedded project. I am trying to use Qualcom 3G modem in our system. The modem SDK has libraries which are using aio support. In uclibc , I

aio support in uClibc ?

2011-09-11 Thread νιкαѕ gαнℓαη
We are using uclibc environment in our embedded project. I am trying to use Qualcom 3G modem in our system. The modem SDK has libraries which are using aio support. In uclibc , I didn't find aio functions. I have seen a aio patch from Cristi but that only contains stubs of aio functions. Can

Re: [PATCH] aio support for uClibc

2008-07-07 Thread Carmelo AMOROSO
Cristi Magherusan wrote: Hello, On Sat, 2008-07-05 at 11:26 +0200, Bernhard Fischer wrote: From a short glance, we want the exact opposite: No stubs but the real implementation. Afaik, there are no public aio_*() syscalls offered by the kernel, and even glibc has only stubs and no real

Re: [PATCH] aio support for uClibc

2008-07-05 Thread Bernhard Fischer
On Fri, Jul 04, 2008 at 10:00:05PM +0200, Carmelo Amoroso wrote: Cristi Magherusan wrote: Hello, You can find attached the patch that adds into librt optional support for stubs of the aio functions, as I promised a few days ago. It's mostly a copy/paste from glibc, with a few modifications

Re: [PATCH] aio support for uClibc

2008-07-05 Thread Cristi Magherusan
Hello, On Sat, 2008-07-05 at 11:26 +0200, Bernhard Fischer wrote: From a short glance, we want the exact opposite: No stubs but the real implementation. Afaik, there are no public aio_*() syscalls offered by the kernel, and even glibc has only stubs and no real implementation. Also in my POV

Re: [PATCH] aio support for uClibc

2008-07-04 Thread Carmelo Amoroso
Cristi Magherusan wrote: Hello, You can find attached the patch that adds into librt optional support for stubs of the aio functions, as I promised a few days ago. It's mostly a copy/paste from glibc, with a few modifications needed for it to compile, I hope I haven't missed anything and