]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/udev_monitor_receive_device.xml
test-execute: Add tests for new PassEnvironment= directive
[thirdparty/systemd.git] / man / udev_monitor_receive_device.xml
CommitLineData
06255d6f
DH
1<?xml version='1.0'?> <!--*-nxml-*-->
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
4<!ENTITY % entities SYSTEM "custom-entities.ent" >
5%entities;
6]>
7
8<!--
9 This file is part of systemd.
10
11 Copyright 2015 David Herrmann <dh.herrmann@gmail.com>
12
13 systemd is free software; you can redistribute it and/or modify it
14 under the terms of the GNU Lesser General Public License as published by
15 the Free Software Foundation; either version 2.1 of the License, or
16 (at your option) any later version.
17
18 systemd is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 Lesser General Public License for more details.
22
23 You should have received a copy of the GNU Lesser General Public License
24 along with systemd; If not, see <http://www.gnu.org/licenses/>.
25-->
26
27<refentry id="udev_monitor_receive_device"
28 xmlns:xi="http://www.w3.org/2001/XInclude">
29
30 <refentryinfo>
31 <title>udev_monitor_receive_device</title>
32 <productname>systemd</productname>
33
34 <authorgroup>
35 <author>
36 <contrib>Developer</contrib>
37 <firstname>David</firstname>
38 <surname>Herrmann</surname>
39 <email>dh.herrmann@gmail.com</email>
40 </author>
41 </authorgroup>
42 </refentryinfo>
43
44 <refmeta>
45 <refentrytitle>udev_monitor_receive_device</refentrytitle>
46 <manvolnum>3</manvolnum>
47 </refmeta>
48
49 <refnamediv>
50 <refname>udev_monitor_receive_device</refname>
51 <refname>udev_monitor_enable_receiving</refname>
52 <refname>udev_monitor_set_receive_buffer_size</refname>
53 <refname>udev_monitor_get_fd</refname>
54 <refname>udev_monitor_get_udev</refname>
55
56 <refpurpose>Query and modify device monitor</refpurpose>
57 </refnamediv>
58
59 <refsynopsisdiv>
60 <funcsynopsis>
61 <funcsynopsisinfo>#include &lt;libudev.h&gt;</funcsynopsisinfo>
62
63 <funcprototype>
64 <funcdef>struct udev_device *<function>udev_monitor_receive_device</function></funcdef>
65 <paramdef>struct udev_monitor *<parameter>udev_monitor</parameter></paramdef>
66 </funcprototype>
67
68 <funcprototype>
69 <funcdef>int <function>udev_monitor_enable_receiving</function></funcdef>
70 <paramdef>struct udev_monitor *<parameter>udev_monitor</parameter></paramdef>
71 </funcprototype>
72
73 <funcprototype>
74 <funcdef>int <function>udev_monitor_set_receive_buffer_size</function></funcdef>
75 <paramdef>struct udev_monitor *<parameter>udev_monitor</parameter></paramdef>
76 <paramdef>int <parameter>size</parameter></paramdef>
77 </funcprototype>
78
79 <funcprototype>
80 <funcdef>int <function>udev_monitor_get_fd</function></funcdef>
81 <paramdef>struct udev_monitor *<parameter>udev_monitor</parameter></paramdef>
82 </funcprototype>
83
84 <funcprototype>
85 <funcdef>struct udev *<function>udev_monitor_get_udev</function></funcdef>
86 <paramdef>struct udev_monitor *<parameter>udev_monitor</parameter></paramdef>
87 </funcprototype>
88
89 </funcsynopsis>
90 </refsynopsisdiv>
91
92 <!--<refsect1>
93 <title>Description</title>
94
95 <para>XXX: Add short description.</para>
96 </refsect1>-->
97
98 <refsect1>
99 <title>Return Value</title>
100
101 <para>On success,
102 <function>udev_monitor_receive_device()</function> returns a
103 pointer to a newly referenced device that was received via the
104 monitor. The caller is responsible to drop this reference when
105 done. On failure, <constant>NULL</constant> is returned.</para>
106
107 <para>On success,
108 <function>udev_monitor_enable_receiving()</function> and
109 <function>udev_monitor_set_receive_buffer_size()</function>
110 return an integer greater than, or equal to,
111 <constant>0</constant>. On failure, a negative error code is
112 returned.</para>
113
114 <para>On success, <function>udev_monitor_get_fd()</function>
115 returns the file descriptor used by this monitor. On failure,
116 a negative error code is returned.</para>
117
118 <para><function>udev_monitor_get_udev()</function> always returns
119 a pointer to the udev context that this monitor is associated
120 with.</para>
121 </refsect1>
122
123 <refsect1>
124 <title>See Also</title>
125
126 <para>
127 <citerefentry><refentrytitle>udev_new</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
128 <citerefentry><refentrytitle>udev_device_new_from_syspath</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
129 <citerefentry><refentrytitle>udev_enumerate_new</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
130 <citerefentry><refentrytitle>udev_monitor_new_from_netlink</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
131 <citerefentry><refentrytitle>udev_monitor_filter_update</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
132 <citerefentry><refentrytitle>udev_list_entry</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
133 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
134 </para>
135 </refsect1>
136
137</refentry>