summaryrefslogtreecommitdiff
path: root/udev/lib/libudev-ctrl.c
AgeCommit message (Collapse)Author
2008-11-01move some info() to dbg()Kay Sievers
2008-10-21use more appropriate alternatives to malloc()Alan Jenkins
Use calloc to request cleared memory instead. Kernel and libc conspire to make this more efficient. Also, replace one malloc() + strcpy() with strdup(). Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
2008-10-17libudev: ctrl - change magic to integerKay Sievers
2008-10-16libudev: ctrl - fix typo in set_env()Kay Sievers
2008-09-29replace strerror() usage with threadsafe "%m" format stringAlan 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-19always include config.h from MakefileKay Sievers
2008-09-15libudev: rename ctrl_msg to ctrl_msg_wireKay Sievers
2008-09-10libudev: do not use any udev source fileKay Sievers
2008-09-10update file headersKay Sievers
2008-09-09udevd: remove max_childs_running logicKay 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-08move udev_ctrl to libudev-privateKay Sievers