summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2006-08-30 18:28:29 +0000
committerChris Wilson <chris+github@qwirx.com>2006-08-30 18:28:29 +0000
commit55c923c1ce31cb02aec672b6f78098cfdecafa40 (patch)
tree8f2343b11b7fa82d21088e8c2766f98d3713ef69
parentf9fbe34b3d409749264bc69497d7e51bf744fbf3 (diff)
* bin/bbstored/BackupStoreDaemon.h
- Revert to trunk
-rw-r--r--bin/bbstored/BackupStoreDaemon.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/bin/bbstored/BackupStoreDaemon.h b/bin/bbstored/BackupStoreDaemon.h
index 857a9356..2fbe486d 100644
--- a/bin/bbstored/BackupStoreDaemon.h
+++ b/bin/bbstored/BackupStoreDaemon.h
@@ -38,13 +38,11 @@ private:
BackupStoreDaemon(const BackupStoreDaemon &rToCopy);
public:
-#ifndef WIN32
// For BackupContext to comminicate with housekeeping process
void SendMessageToHousekeepingProcess(const void *Msg, int MsgLen)
{
mInterProcessCommsSocket.Write(Msg, MsgLen);
}
-#endif
protected:
@@ -59,11 +57,9 @@ protected:
const ConfigurationVerify *GetConfigVerify() const;
-#ifndef WIN32
// Housekeeping functions
void HousekeepingProcess();
bool CheckForInterProcessMsg(int AccountNum = 0, int MaximumWaitTime = 0);
-#endif
void LogConnectionStats(const char *commonName, const SocketStreamTLS &s);
@@ -74,17 +70,8 @@ private:
bool mHaveForkedHousekeeping;
bool mIsHousekeepingProcess;
-#ifdef WIN32
- virtual void OnIdle();
- bool mHousekeepingInited;
-#else
SocketStream mInterProcessCommsSocket;
IOStreamGetLine mInterProcessComms;
-#endif
-
- void HousekeepingInit();
- void RunHousekeepingIfNeeded();
- int64_t mLastHousekeepingRun;
};