summaryrefslogtreecommitdiffstats
path: root/src/Daemon/MiddleWare.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-02-05 16:06:41 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-02-05 16:06:41 +0100
commit3eb31571804247a6ba51349f5a78ad7a334d3e7e (patch)
tree7e4c09331bb6aa16c0a2de2e4bca286871cf1d9c /src/Daemon/MiddleWare.h
parent75c6e1fc1113984b30a4d84c1cfe6e97c70c398f (diff)
downloadabrt-3eb31571804247a6ba51349f5a78ad7a334d3e7e.tar.gz
abrt-3eb31571804247a6ba51349f5a78ad7a334d3e7e.tar.xz
abrt-3eb31571804247a6ba51349f5a78ad7a334d3e7e.zip
abrtd: fix handling of dupes (weren't deleting dup's directory); better logging
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Daemon/MiddleWare.h')
-rw-r--r--src/Daemon/MiddleWare.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Daemon/MiddleWare.h b/src/Daemon/MiddleWare.h
index 71d17f35..aa37e3ed 100644
--- a/src/Daemon/MiddleWare.h
+++ b/src/Daemon/MiddleWare.h
@@ -37,7 +37,7 @@ typedef enum {
MW_PACKAGE_ERROR, /**< Cannot determine package name.*/
MW_GPG_ERROR, /**< Package is not signed properly.*/
MW_REPORTED, /**< Crash is already reported.*/
- MW_OCCURED, /**< Crash occurred in the past, but it is not reported yet.*/
+ MW_OCCURRED, /**< Crash occurred in the past, but it is not reported yet.*/
MW_IN_DB, /**< Debugdump directory is already saved in a database.*/
MW_IN_DB_ERROR, /**< Error while working with a database.*/
MW_PLUGIN_ERROR, /**< plugin wasn't found or error within plugin*/
@@ -105,8 +105,11 @@ report_status_t Report(const map_crash_data_t& pCrashData,
std::string getDebugDumpDir( const char *pUUID,
const char *pUID);
/**
- * Saves debugdump into database. If saving is successful,
- * it fills crash info.
+ * Adds package name and description to debugdump dir.
+ * Saves debugdump into database.
+ * Detects whether it's a duplicate crash.
+ * Fills crash info.
+ * Note that if it's a dup, loads _first crash_ info, not this one's.
* @param pDebugDumpDir A debugdump directory.
* @param pCrashData A crash info.
* @return It return results of operation. See mw_result_t.