chiark / gitweb /
kdbus: add base enums for items
authorLennart Poettering <lennart@poettering.net>
Fri, 29 Nov 2013 19:09:41 +0000 (20:09 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 29 Nov 2013 19:14:11 +0000 (20:14 +0100)
src/libsystemd-bus/kdbus.h

index d419772f52f96d7fb9d0a9917db6dd3e0624e887..c9377ea277973a27e7890f2d48a36a3017098aa3 100644 (file)
@@ -91,7 +91,8 @@ enum {
        _KDBUS_ITEM_NULL,
 
        /* Filled in by userspace */
-       KDBUS_ITEM_PAYLOAD_VEC,         /* .data_vec, reference to memory area */
+        _KDBUS_ITEM_USER_BASE      = 1,
+        KDBUS_ITEM_PAYLOAD_VEC     = 1,/* .data_vec, reference to memory area */
        KDBUS_ITEM_PAYLOAD_OFF,         /* .data_vec, reference to memory area */
        KDBUS_ITEM_PAYLOAD_MEMFD,       /* file descriptor of a special data file */
        KDBUS_ITEM_FDS,                 /* .data_fds of file descriptors */
@@ -100,6 +101,7 @@ enum {
        KDBUS_ITEM_PRIORITY,            /* queue priority for message */
 
        /* Filled in by kernelspace */
+        _KDBUS_ITEM_ATTACH_BASE        = 0x400,
        KDBUS_ITEM_NAMES        = 0x400,/* NUL separated string list with well-known names of source */
        KDBUS_ITEM_TIMESTAMP,           /* .timestamp */
 
@@ -115,6 +117,7 @@ enum {
        KDBUS_ITEM_AUDIT,               /* .audit */
 
        /* Special messages from kernel, consisting of one and only one of these data blocks */
+        _KDBUS_ITEM_KERNEL_BASE        = 0x800,
        KDBUS_ITEM_NAME_ADD     = 0x800,/* .name_change */
        KDBUS_ITEM_NAME_REMOVE,         /* .name_change */
        KDBUS_ITEM_NAME_CHANGE,         /* .name_change */