Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-13 | everywhere: make use of new0() and macro() macros, and stop using perror() | Lennart Poettering | |
2014-01-31 | use memzero(foo, length); for all memset(foo, 0, length); calls | Greg KH | |
In trying to track down a stupid linker bug, I noticed a bunch of memset() calls that should be using memzero() to make it more "obvious" that the options are correct (i.e. 0 is not the length, but the data to set). So fix up all current calls to memset(foo, 0, length) to memzero(foo, length). | |||
2013-12-19 | remove unused variable | Thomas Hindoe Paaboel Andersen | |
2013-12-18 | libudev: monitor - only disallow "udev" type events | Kay Sievers | |
2013-12-18 | libudev: disable monitor inside a container | Kay Sievers | |
Uevents are events of the host, which should not leak into a container. Containers do not support hotplug at the moment, and devices and uevents are not namespace aware. | |||
2013-12-18 | bus: catch up with kdbus changes | Kay Sievers | |
2013-12-18 | libudev: devices received from udev are always initialized | Kay Sievers | |
2013-11-20 | libudev: always return NULL in _unref() APIs | Lennart Poettering | |
Returning anything else but NULL would suggest the caller's reference might still be valid, but it isn't, because the caller just invoked _unref() after all. This turns the return value into a typesafe shortcut that allows unreffing and resetting a reference in one line. In contrast to solutions for this which take a pointer to a pointer to accomplish the same this solution is just syntactic sugar the developer can make use of but doesn't have to, and this is particularly useful when immediately unreffing objects returned by function calls. | |||
2013-11-20 | libudev: always return valid negative error codes on API functions | Lennart Poettering | |
2013-02-13 | use streq instead of strcmp | Thomas Hindoe Paaboel Andersen | |
2012-11-12 | libudev: update copyright headers | Kay Sievers | |
2012-06-18 | libudev: clarify that udev_monitor_receive_device() is non-blocking | Kay Sievers | |
Based on a patch from: Sam Thursfield <ssssam@gmail.com> https://bugs.freedesktop.org/show_bug.cgi?id=51202 | |||
2012-05-25 | udev: silent gcc warnings | Kay Sievers | |
2012-05-15 | udev: update docs, NEWS | Kay Sievers | |
2012-05-15 | udev: libudev - bump soname, remove deprecated functions, introduce symbol ↵ | Kay Sievers | |
versions | |||
2012-04-26 | libudev: prefix log macros with 'udev_' | Kay Sievers | |
2012-04-16 | udev: replace ARRAY_SIZE() with ELEMENTSOF() | Kay Sievers | |
2012-04-15 | udev: udev_monitor_new_from_socket() - log error and remove from public header | Kay Sievers | |
2012-04-13 | udev: move libudev, gudev to src/; move gudev/docs/, udev/docs/ to to docs/ | Kay Sievers | |