Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-09-29 | replace strerror() usage with threadsafe "%m" format string | Alan Jenkins | |
strerror() is not threadsafe. It uses a buffer to build messages of the form "Unknown error 387689". syslog() provides a %m format which is equivalent to strerror(errno). As a GNU extension, this is also accepted by printf and friends. At least in the current implementation, it is correctly threadsafe. Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk> | |||
2008-09-19 | always include config.h from Makefile | Kay Sievers | |
2008-09-15 | libudev: rename ctrl_msg to ctrl_msg_wire | Kay Sievers | |
2008-09-10 | libudev: do not use any udev source file | Kay Sievers | |
2008-09-10 | update file headers | Kay Sievers | |
2008-09-09 | udevd: remove max_childs_running logic | Kay Sievers | |
This was needed in the old days, where all the hotplug scripts did nothing better than sleep for seconds to work around timing issues. It made sure, that w continued to fork processes, while the machine was doing nothing than sleeping, but the maximim number of childs was already reached. This is no longer needed today, we do not run many of these scripts anymore. | |||
2008-09-08 | move udev_ctrl to libudev-private | Kay Sievers | |