add move Linux mem card write test to seprarate thread

This commit is contained in:
Chris Danford
2004-04-13 08:05:50 +00:00
parent 518a749bcf
commit 6f5404c6fe
7 changed files with 445 additions and 12 deletions
@@ -0,0 +1,24 @@
#ifndef MemoryCardDriverThreaded_Linux_H
#define MemoryCardDriverThreaded_Linux_H 1
#include "MemoryCardDriverThreaded.h"
class MemoryCardDriverThreaded_Linux : public MemoryCardDriverThreaded
{
public:
MemoryCardDriverThreaded_Linux();
virtual void Unmount( UsbStorageDevice* pDevice, CString sMountPoint );
virtual void Flush( UsbStorageDevice* pDevice );
virtual void ResetUsbStorage();
protected:
virtual void MountThreadMain();
virtual void Mount( UsbStorageDevice* pDevice, CString sMountPoint );
};
#endif
/*
* Copyright (c) 2003 by the person(s) listed below. All rights reserved.
* Chris Danford
*/