Linux 4.11-rc6
[linux/fpc-iii.git] / Documentation / media / uapi / dvb / video-fopen.rst
blob203a2c56f10a601f4a4b3a139caa4f922c3a8377
1 .. -*- coding: utf-8; mode: rst -*-
3 .. _video_fopen:
5 ================
6 dvb video open()
7 ================
9 Name
10 ----
12 dvb video open()
14 .. attention:: This ioctl is deprecated.
16 Synopsis
17 --------
19 .. c:function:: int open(const char *deviceName, int flags)
22 Arguments
23 ---------
25 .. flat-table::
26     :header-rows:  0
27     :stub-columns: 0
30     -  .. row 1
32        -  const char \*deviceName
34        -  Name of specific video device.
36     -  .. row 2
38        -  int flags
40        -  A bit-wise OR of the following flags:
42     -  .. row 3
44        -
45        -  O_RDONLY read-only access
47     -  .. row 4
49        -
50        -  O_RDWR read/write access
52     -  .. row 5
54        -
55        -  O_NONBLOCK open in non-blocking mode
57     -  .. row 6
59        -
60        -  (blocking mode is the default)
63 Description
64 -----------
66 This system call opens a named video device (e.g.
67 /dev/dvb/adapter0/video0) for subsequent use.
69 When an open() call has succeeded, the device will be ready for use. The
70 significance of blocking or non-blocking mode is described in the
71 documentation for functions where there is a difference. It does not
72 affect the semantics of the open() call itself. A device opened in
73 blocking mode can later be put into non-blocking mode (and vice versa)
74 using the F_SETFL command of the fcntl system call. This is a standard
75 system call, documented in the Linux manual page for fcntl. Only one
76 user can open the Video Device in O_RDWR mode. All other attempts to
77 open the device in this mode will fail, and an error-code will be
78 returned. If the Video Device is opened in O_RDONLY mode, the only
79 ioctl call that can be used is VIDEO_GET_STATUS. All other call will
80 return an error code.
83 Return Value
84 ------------
86 .. tabularcolumns:: |p{2.5cm}|p{15.0cm}|
88 .. flat-table::
89     :header-rows:  0
90     :stub-columns: 0
93     -  .. row 1
95        -  ``ENODEV``
97        -  Device driver not loaded/available.
99     -  .. row 2
101        -  ``EINTERNAL``
103        -  Internal error.
105     -  .. row 3
107        -  ``EBUSY``
109        -  Device or resource busy.
111     -  .. row 4
113        -  ``EINVAL``
115        -  Invalid argument.