chiark / gitweb /
[PATCH] get rid of functions in klibc_fixups that are now in klibc
[elogind.git] / udev.h
diff --git a/udev.h b/udev.h
index cdf1af4fc21ec58b51d2b25363a5aaebfdd889f1..6798f136663275fc05198fbc3def8d39b0023781 100644 (file)
--- a/udev.h
+++ b/udev.h
@@ -68,8 +68,20 @@ struct udevice {
        int major;
        int minor;
        mode_t mode;
+
+       /* fields that help us in building strings */
+       unsigned char bus_id[SYSFS_NAME_LEN];
+       unsigned char callout_value[NAME_SIZE];
+       unsigned char kernel_number[NAME_SIZE];
+
 };
 
+#define strfieldcpy(to, from) \
+do { \
+       to[sizeof(to)-1] = '\0'; \
+       strncpy(to, from, sizeof(to)-1); \
+} while (0)
+
 extern int udev_add_device(char *path, char *subsystem);
 extern int udev_remove_device(char *path, char *subsystem);