|
@@ -101,12 +101,15 @@ typedef int LSUP_rc;
|
|
|
#define LSUP_END 88803
|
|
|
|
|
|
/** @brief Conflict warning.
|
|
|
+ *
|
|
|
* An attempt to create or update a resource was made, but the resource existed
|
|
|
* with a different form or value. The caller should find the value of the
|
|
|
* existing resource to be different than the one that was attempted to store.
|
|
|
* If this is returned from the iteration of multiple updates, it means that
|
|
|
* other resources in the loop may have changed state and the operation as a
|
|
|
* whole completed successfully.
|
|
|
+ *
|
|
|
+ * The error-level counterpart to this is #LSUP_CONFLICT_ERR.
|
|
|
*/
|
|
|
#define LSUP_CONFLICT 88804
|
|
|
|
|
@@ -148,10 +151,12 @@ typedef int LSUP_rc;
|
|
|
* is returned from the iteration of multiple updates, it means that the
|
|
|
* operation has been interrupted and any state change within the loop prior to
|
|
|
* the error has been rolled back.
|
|
|
+ *
|
|
|
+ * The warning-level counterpart to this is #LSUP_CONFLICT.
|
|
|
*/
|
|
|
#define LSUP_CONFLICT_ERR -88891
|
|
|
|
|
|
-/// Error while handling environment setup.
|
|
|
+/// Error while handling environment setup; or environment not initialized.
|
|
|
#define LSUP_ENV_ERR -88890
|
|
|
///@} END defgroup return
|
|
|
|