You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2020/04/12 15:00:01 UTC

[GitHub] [incubator-nuttx] patacongo commented on issue #769: misc/Kconfig: enable LIBC_IOCTL_VARIADIC by default

patacongo commented on issue #769: misc/Kconfig: enable LIBC_IOCTL_VARIADIC by default
URL: https://github.com/apache/incubator-nuttx/pull/769#issuecomment-612629522
 
 
   This must be a new addition to the specs at OpenGroup.org.  They did not specify ioctl at all in the past.
   
   NOTE: That this is only a thin layer.  It still only accepts one 'unsigned int' argument.  But the ioctl layer just gets that using va_arg. See libs/libc/misc/lib_ioctl.c:
   
       108   va_start(ap, req);
       109   arg = va_arg(ap, unsigned long);
       110   va_end(ap);
       111
       112   /* Then let fs_ioctl() to the real work */
       113
       114   return fs_ioctl(fd, req, arg);
   
   It would take a lot of work to use this properly.  And variadic functions cannot be used in syscalls so we would probably have to have a vioctl().
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services