~gandelman-a/ubuntu/oneiric/udev/lp818177

« back to all changes in this revision

Viewing changes to libudev/libudev-private.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-04-04 11:26:08 UTC
  • mfrom: (0.7.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20110404112608-e8c4pxtphde8seso
Tags: 167-0ubuntu1
* New upstream release:
  - Drop v4l1 code, as current kernels don't ship that any more.
  - Lots of bug fixes.
  - Lots of changes to systemd integration (does not affect Ubuntu package).
  - Use /run/udev/ if possible and fall back to /dev/.udev/ (does not affect
    current Ubuntu, as we don't have a /run directory).
  - Some keymap updates for Acer and MSI laptops. (LP: #637695)
* debian/libudev0.symbols: Add two new symbols from new version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
              const char *format, ...)
62
62
              __attribute__((format(printf, 6, 7)));
63
63
const char *udev_get_rules_path(struct udev *udev);
 
64
const char *udev_get_run_config_path(struct udev *udev);
 
65
const char *udev_set_run_path(struct udev *udev, const char *path);
64
66
struct udev_list_entry *udev_add_property(struct udev *udev, const char *key, const char *value);
65
67
struct udev_list_entry *udev_get_properties_list_entry(struct udev *udev);
66
68
 
78
80
int udev_device_add_property_from_string_parse_finish(struct udev_device *udev_device);
79
81
char **udev_device_get_properties_envp(struct udev_device *udev_device);
80
82
ssize_t udev_device_get_properties_monitor_buf(struct udev_device *udev_device, const char **buf);
81
 
int udev_device_read_db(struct udev_device *udev_device);
 
83
int udev_device_read_db(struct udev_device *udev_device, const char *dbfile);
82
84
int udev_device_read_uevent_file(struct udev_device *udev_device);
83
85
int udev_device_set_action(struct udev_device *udev_device, const char *action);
84
86
int udev_device_set_driver(struct udev_device *udev_device, const char *driver);
122
124
/* libudev-ctrl.c - daemon runtime setup */
123
125
struct udev_ctrl;
124
126
struct udev_ctrl *udev_ctrl_new_from_socket(struct udev *udev, const char *socket_path);
 
127
struct udev_ctrl *udev_ctrl_new_from_fd(struct udev *udev, int fd);
125
128
int udev_ctrl_enable_receiving(struct udev_ctrl *uctrl);
126
129
struct udev_ctrl *udev_ctrl_ref(struct udev_ctrl *uctrl);
127
130
void udev_ctrl_unref(struct udev_ctrl *uctrl);