media-func-open.rst 1.3 KB
Newer Older
1 2 3 4 5 6 7 8
.. -*- coding: utf-8; mode: rst -*-

.. _media-func-open:

************
media open()
************

9 10
NAME
====
11

12
media-open - Open a media device
13

14
SYNOPSIS
15 16 17 18 19 20 21
========

.. code-block:: c

    #include <fcntl.h>


22
.. cpp:function:: int open( const char *device_name, int flags )
23

24 25

ARGUMENTS
26 27 28 29 30 31 32 33 34 35
=========

``device_name``
    Device to be opened.

``flags``
    Open flags. Access mode must be either ``O_RDONLY`` or ``O_RDWR``.
    Other flags have no effect.


36
DESCRIPTION
37 38
===========

39
To open a media device applications call :ref:`open() <func-open>` with the
40 41 42 43 44 45 46 47
desired device name. The function has no side effects; the device
configuration remain unchanged.

When the device is opened in read-only mode, attempts to modify its
configuration will result in an error, and ``errno`` will be set to
EBADF.


48
RETURN VALUE
49 50
============

51
:ref:`open() <func-open>` returns the new file descriptor on success. On error,
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
-1 is returned, and ``errno`` is set appropriately. Possible error codes
are:

EACCES
    The requested access to the file is not allowed.

EMFILE
    The process already has the maximum number of files open.

ENFILE
    The system limit on the total number of open files has been reached.

ENOMEM
    Insufficient kernel memory was available.

ENXIO
    No device corresponding to this device special file exists.