diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-04-16 11:40:47 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-05-15 19:09:20 -0400 |
commit | e7c194a8527d2aaf03b57fac66a0041aff714d70 (patch) | |
tree | 867b2545c836973151ac459b884a81045c6ca758 /sd_login/doc.go | |
parent | 265dd14966ae7b83d184d276f6085c12aa18a427 (diff) |
sd_login: Be slightly more verbose with type names.
Diffstat (limited to 'sd_login/doc.go')
-rw-r--r-- | sd_login/doc.go | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/sd_login/doc.go b/sd_login/doc.go index 33c31be..00e7250 100644 --- a/sd_login/doc.go +++ b/sd_login/doc.go @@ -17,14 +17,16 @@ // Package sd_login introspects session and login information from // systemd, logind, and machined. // -// There are 5 basic object types that these three system services manage. +// There are 5 basic object types that these three system services +// manage and are introspected by this package. // // The machine manager maintains a list of "machines": // // 1. machine: A local container or virtual machine // // The host system, and machines hosted on it, may each run their own -// login manager, which keeps track of seats, sessions, and users: +// login manager, which keeps track of "seats", "sessions", and +// "users": // // 2. seat: A set of hardware devices for a workspace; i.e. a screen // and keyboard @@ -36,10 +38,10 @@ // more sessions // // Finally, sessions and users can be used to group together -// processes, which are kept track of by cgroup manager: +// "processes", which are kept track of by cgroup manager: // -// 5. pid: A process may belong to a session, or directly to a user -// if it is not part of a session. This "belonging" is separate -// accounting by the login manager; it is NOT the same as the -// EUID/RUID. +// 5. process: A process may belong to a session, or directly to a +// user if it is not part of a session. This "belonging" is +// separate accounting by the cgroup manager; it is NOT the same +// as the EUID/RUID. package sd_login |