diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2014-12-16 17:30:46 +0100 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2015-03-11 12:32:48 +0100 |
commit | b2068772f5fd05173c4a42a907e42bb69160170c (patch) | |
tree | e71199609e655d5e498f92fab760bed6f509dcc0 /src/libsystemd-terminal/sysview-internal.h | |
parent | 84c3561c58dd992b339afe5bb4c41971a2ebc486 (diff) |
terminal/sysview: introduce SETTLE events
This introduces a new SYSVIEW_EVENT_SETTLE notification that is sent after
initial scanning via sysview is done. This is very handy to let the
application raise warnings in case requested resources are not found
during startup.
The SETTLE event is sent after systemd-logind and udev enumerations are
done. This event does in no way guarantee that a given resource is
available. All it does is notify the application that scanning is done!
You must not react to SETTLE if you don't have external synchronization
with the resource you're waiting for.
The main use-case for SETTLE is to run applications _inside_ of logind
sessions and startup sysview. You really want to make sure that the own
session you're running in was found during enumeration. If not, something
is seriously wrong.
Diffstat (limited to 'src/libsystemd-terminal/sysview-internal.h')
-rw-r--r-- | src/libsystemd-terminal/sysview-internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libsystemd-terminal/sysview-internal.h b/src/libsystemd-terminal/sysview-internal.h index 39ff933eaa..f1fd4b5f53 100644 --- a/src/libsystemd-terminal/sysview-internal.h +++ b/src/libsystemd-terminal/sysview-internal.h @@ -113,6 +113,7 @@ struct sysview_context { sd_bus *sysbus; struct udev *ud; uint64_t custom_sid; + unsigned int n_probe; Hashmap *seat_map; Hashmap *session_map; @@ -137,6 +138,7 @@ struct sysview_context { bool running : 1; bool scanned : 1; bool rescan : 1; + bool settled : 1; }; int sysview_context_rescan(sysview_context *c); |