summaryrefslogtreecommitdiffstats
path: root/device/udev_linux/udev.cc
blob: e10074b5aa74c54daf77f38ee4262d71f243b0d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <libudev.h>

#include "device/udev_linux/udev.h"

namespace device {

void UdevDeleter::operator()(udev* dev) const {
  udev_unref(dev);
}

void UdevEnumerateDeleter::operator()(udev_enumerate* enumerate) const {
  udev_enumerate_unref(enumerate);
}

void UdevDeviceDeleter::operator()(udev_device* device) const {
  udev_device_unref(device);
}

void UdevMonitorDeleter::operator()(udev_monitor* monitor) const {
  udev_monitor_unref(monitor);
}

}  // namespace device