summaryrefslogtreecommitdiffstats
path: root/lib/Utils/DebugDump.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-09-09 17:13:47 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-09-09 17:13:47 +0200
commit5fe652bb3422cab731deddae4c25c2f0d6fee885 (patch)
tree21ad665ac2cf4c8d065c76952d3bb7d75388aaa9 /lib/Utils/DebugDump.h
parent49203bd0e4280757f910ba61fc1683f55fe6bc9b (diff)
downloadabrt-5fe652bb3422cab731deddae4c25c2f0d6fee885.tar.gz
abrt-5fe652bb3422cab731deddae4c25c2f0d6fee885.tar.xz
abrt-5fe652bb3422cab731deddae4c25c2f0d6fee885.zip
eliminate CDebugDump::m_bUnlock, m_nLockfileFD can be used instead
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib/Utils/DebugDump.h')
-rw-r--r--lib/Utils/DebugDump.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Utils/DebugDump.h b/lib/Utils/DebugDump.h
index 703e0a12..473f8d45 100644
--- a/lib/Utils/DebugDump.h
+++ b/lib/Utils/DebugDump.h
@@ -44,15 +44,13 @@ class CDebugDump
private:
std::string m_sDebugDumpDir;
bool m_bOpened;
- bool m_bUnlock;
DIR* m_pGetNextFileDir;
- int m_nFD;
+ int m_nLockfileFD;
void SaveKernelArchitectureRelease();
void SaveTime();
void Lock();
- bool GetAndSetLock(const char* pLockFile, const std::string& pPID);
void UnLock();
public: