Displaying 3 results from an estimated 3 matches for "ioctrl".
Did you mean:
ioctl
2009 May 18
2
[LLVMdev] [Cygwin] bug on SVN
> Okay, we're now checking for <termios.h> in addition to <sys/ioctl.h>.
> Hopefully, things are working again on Cygwin with r72018 (but I can't test
> it here).
It's still building here, but it definitely gets further than it used
to. Thanks Doug!
Jay.
2009 May 18
0
[LLVMdev] [Cygwin] bug on SVN
...h r72018 (but I can't
>> test
>> it here).
>
> It's still building here, but it definitely gets further than it used
> to. Thanks Doug!
Jay,
Do you mean it does not build or does build ?
I had freeked it and added a #include <termios.h> to Cygwins
include/sys/ioctrl.h and it built fine.
Aaron
2006 Oct 06
0
V4L + Theora small app...
...;
select( iV4Lfd + 1, &tFDset, NULL, NULL, NULL );
if( ioctl( iV4Lfd, VIDIOCMCAPTURE, &tV4LvideoMMap ) == -1 )
{
perror( "### ioctl() - VIDIOCMCAPTURE" );
return;
}
if( ioctl( iV4Lfd, VIDIOCSYNC, &i ) == -1 )
{
perror( "### ioctrl() - VIDIOCSYNC" );
return;
}
}
void V4L_Uninit( void )
{
printf( "+++ V4L_Uninit() \n" );
if( pucV4Lbuffer != NULL )
{
munmap( pucV4Lbuffer, iV4LbufferSize );
pucV4Lbuffer = NULL;
}
if( iV4Lfd != -1 )
{
close( iV4Lfd );...