IOCTL.2
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:2k
源码类别:

操作系统开发

开发平台:

C/C++

  1. IOCTL(2)                  Minix Programmer's Manual                   IOCTL(2)
  2. NAME
  3.      ioctl - control device
  4. SYNOPSIS
  5.      #include <sys/types.h>
  6.      #include <sys/ioctl.h>
  7.      int ioctl(int d, int request, void *argp)             (Minix)
  8.      int ioctl(int d, ioreq_t request, void *argp)         (Minix-vmd)
  9. DESCRIPTION
  10.      Ioctl  performs  a  variety  of  functions  on  open   descriptors.    In
  11.      particular,  many  operating  characteristics  of character special files
  12.      (e.g. terminals) may be controlled with ioctl requests.  The writeups  of
  13.      various devices in section 4 discuss how ioctl applies to them.
  14.      An  ioctl request has encoded in it  whether  the  argument  is  an  "in"
  15.      parameter or "out" parameter, and the size of the argument argp in bytes.
  16.      Macros and defines used in specifying an ioctl request are located in the
  17.      file <sys/ioctl.h>.
  18. RETURN VALUE
  19.      If an error has occurred, a value of -1 is returned and errno is  set  to
  20.      indicate the error.
  21. ERRORS
  22.      Ioctl will fail if one or more of the following are true:
  23.      [EBADF]        D is not a valid descriptor.
  24.      [ENOTTY]       D is not associated with a character special device.
  25.      [ENOTTY]       The specified request does not apply to the kind of object
  26.                     that the descriptor d references.
  27.      [EINVAL]       Request or argp is not valid.
  28. SEE ALSO
  29.      execve(2), fcntl(2), mt(4), tty(4), intro(4).
  30. 4BSD                              March 4, 1986                              1