2 .\" Copyright (c) 2010 The DragonFly Project. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\" notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\" notice, this list of conditions and the following disclaimer in
12 .\" the documentation and/or other materials provided with the
14 .\" 3. Neither the name of The DragonFly Project nor the names of its
15 .\" contributors may be used to endorse or promote products derived
16 .\" from this software without specific, prior written permission.
18 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 .\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21 .\" FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 .\" COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23 .\" INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 .\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26 .\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27 .\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
28 .\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 .Nm udev_get_dev_path ,
39 .Nm udev_set_userdata ,
41 .Nd general udev functions
49 .Fn udev_ref "struct udev *udev_ctx"
51 .Fn udev_unref "struct udev *udev_ctx"
53 .Fn udev_get_dev_path "struct udev *udev_ctx"
55 .Fn udev_set_userdata "struct udev *udev_ctx" "void *userdata"
57 .Fn udev_get_userdata "struct udev *udev_ctx"
61 function returns a new udev context.
62 This is needed as a context for all other libdevattr functions.
63 The returned context has a refcount of 1.
66 if no udev context could be created, which usually happens when
67 the udevd daemon is not running.
73 functions increase or decrease the reference count on a udev object respectively.
74 When the reference count drops to 0, the object is automatically destroyed.
77 function returns the same object that was passed in.
81 function returns the path to the system device directory.
85 function allows the consumer to associate some
91 function returns the currently associated user data.
95 .Xr udev_enumerate 3 ,