[PATCH] print udev pid

makes debugging easier.
This commit is contained in:
olh@suse.de 2003-09-24 20:56:17 -07:00 committed by Greg KH
parent 99bec17497
commit e436917d9c
1 changed files with 7 additions and 1 deletions

View File

@ -21,16 +21,22 @@
*/
#include <stdarg.h>
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <syslog.h>
#include "udev.h"
#ifdef DEBUG
static int logging_init = 0;
static unsigned char udev_logname[42];
static void init_logging (void)
{
openlog ("udev", 0, LOG_DAEMON);
snprintf(udev_logname,42,"udev[%d]", getpid());
openlog (udev_logname, 0, LOG_DAEMON);
logging_init = 1;
}