1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-21 22:04:01 +03:00

journal: update comments a bit

This commit is contained in:
Lennart Poettering 2012-10-10 01:37:38 +02:00
parent ad9eafab9f
commit a3eb665e0c

View File

@ -57,9 +57,16 @@ struct Match {
};
typedef enum LocationType {
/* The first and last entries, resp. */
LOCATION_HEAD,
LOCATION_TAIL,
/* We already read the entry we currently point to, and the
* next one to read should probably not be this one again. */
LOCATION_DISCRETE,
/* We should seek to the precise location specified, and
* return it, as we haven't read it yet. */
LOCATION_SEEK
} LocationType;