core: add two minor comments (#10890)
authorLennart Poettering <lennart@poettering.net>
Thu, 22 Nov 2018 21:25:27 +0000 (22:25 +0100)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 22 Nov 2018 21:25:27 +0000 (06:25 +0900)
src/core/unit.c
src/core/unit.h

index ab057ad..359bd62 100644 (file)
@@ -1491,6 +1491,9 @@ int unit_load(Unit *u) {
                 return 0;
 
         if (u->transient_file) {
+                /* Finalize transient file: if this is a transient unit file, as soon as we reach unit_load() the setup
+                 * is complete, hence let's synchronize the unit file we just wrote to disk. */
+
                 r = fflush_and_check(u->transient_file);
                 if (r < 0)
                         goto fail;
index f159233..22f33aa 100644 (file)
@@ -316,6 +316,7 @@ typedef struct Unit {
         /* Is this a unit that is always running and cannot be stopped? */
         bool perpetual;
 
+        /* Booleans indicating membership of this unit in the various queues */
         bool in_load_queue:1;
         bool in_dbus_queue:1;
         bool in_cleanup_queue:1;