1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-27 10:25:37 +03:00

core: split error list in comment for unit_start() in two

This commit is contained in:
Lennart Poettering 2019-03-18 13:28:59 +01:00
parent 36c4dc089e
commit 9adb695987

View File

@ -1727,12 +1727,14 @@ static bool unit_verify_deps(Unit *u) {
return true;
}
/* Errors:
* -EBADR: This unit type does not support starting.
/* Errors that aren't really errors:
* -EALREADY: Unit is already started.
* -EAGAIN: An operation is already in progress. Retry later.
* -ECANCELED: Start limit hit, too many requests for now
* -ECOMM: Condition failed
* -EAGAIN: An operation is already in progress. Retry later.
*
* Errors that are real errors:
* -EBADR: This unit type does not support starting.
* -ECANCELED: Start limit hit, too many requests for now
* -EPROTO: Assert failed
* -EINVAL: Unit not loaded
* -EOPNOTSUPP: Unit type not supported