blob: 8c4624dd50e22fc358a10b0c86b6a2017b806b9e [file] [log] [blame]
Markus Heiser5377d912016-06-30 15:18:56 +02001.. -*- coding: utf-8; mode: rst -*-
2
3.. _app-pri:
4
5********************
6Application Priority
7********************
8
9When multiple applications share a device it may be desirable to assign
10them different priorities. Contrary to the traditional "rm -rf /" school
11of thought a video recording application could for example block other
12applications from changing video controls or switching the current TV
13channel. Another objective is to permit low priority applications
14working in background, which can be preempted by user controlled
15applications and automatically regain control of the device at a later
16time.
17
18Since these features cannot be implemented entirely in user space V4L2
Mauro Carvalho Chehab4e03cb72016-07-03 10:02:29 -030019defines the :ref:`VIDIOC_G_PRIORITY <VIDIOC_G_PRIORITY>` and
Mauro Carvalho Chehabaf4a4d02016-07-01 13:42:29 -030020:ref:`VIDIOC_S_PRIORITY <VIDIOC_G_PRIORITY>` ioctls to request and
Markus Heiser5377d912016-06-30 15:18:56 +020021query the access priority associate with a file descriptor. Opening a
22device assigns a medium priority, compatible with earlier versions of
23V4L2 and drivers not supporting these ioctls. Applications requiring a
Mauro Carvalho Chehabe6702ee2016-06-30 21:58:44 -030024different priority will usually call :ref:`VIDIOC_S_PRIORITY
Mauro Carvalho Chehabaf4a4d02016-07-01 13:42:29 -030025<VIDIOC_G_PRIORITY>` after verifying the device with the
Mauro Carvalho Chehab73470812016-07-01 13:58:44 -030026:ref:`VIDIOC_QUERYCAP` ioctl.
Markus Heiser5377d912016-06-30 15:18:56 +020027
28Ioctls changing driver properties, such as
Mauro Carvalho Chehabcdb4af02016-07-03 11:53:09 -030029:ref:`VIDIOC_S_INPUT <VIDIOC_G_INPUT>`, return an ``EBUSY`` error code
Markus Heiser5377d912016-06-30 15:18:56 +020030after another application obtained higher priority.
31
32
33.. ------------------------------------------------------------------------------
34.. This file was automatically converted from DocBook-XML with the dbxml
35.. library (https://github.com/return42/sphkerneldoc). The origin XML comes
36.. from the linux kernel, refer to:
37..
38.. * https://github.com/torvalds/linux/tree/master/Documentation/DocBook
39.. ------------------------------------------------------------------------------