chiark / gitweb /
libsystemd: add sd-device library
authorTom Gundersen <teg@jklm.no>
Wed, 1 Apr 2015 11:50:31 +0000 (13:50 +0200)
committerTom Gundersen <teg@jklm.no>
Wed, 1 Apr 2015 22:18:27 +0000 (00:18 +0200)
commit57fa1d094cd2c5ac68970526ad0a0754c548e75d
tree844e105c4e4b16685d8b19c64278be81e5ad101b
parent309b578d313b363974b99e48f0e378111cc1fa91
libsystemd: add sd-device library

This provides equivalent functionality to libudev-device, but in the
systemd style. The public API only caters to creating sd_device objects
from for devices that already exist in /sys, there is no support for
listening for monitoring events or creating devices received over
the udev netlink protocol.

The private API contains the necessary functionality to make sd-device
a drop-in replacement for libudev-device, but which we would not
otherwise want to export.
Makefile.am
src/libsystemd/sd-device/device-internal.h [new file with mode: 0644]
src/libsystemd/sd-device/device-private.c [new file with mode: 0644]
src/libsystemd/sd-device/device-private.h [new file with mode: 0644]
src/libsystemd/sd-device/device-util.h [new file with mode: 0644]
src/libsystemd/sd-device/sd-device.c [new file with mode: 0644]
src/systemd/sd-device.h [new file with mode: 0644]