* Made {Publish,Unpublish}Device() virtual and implemented them in

KPartition and as no-ops in KDiskDevice.
* Prefixed partition names with "obos_" to not interfere with R5's
  partition names.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3509 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2003-06-14 00:06:57 +00:00
parent 205248dd7a
commit f7672ebc25
4 changed files with 64 additions and 7 deletions
@@ -37,8 +37,8 @@ public:
int32 CountReferences() const;
status_t Open(int flags, int *fd);
status_t PublishDevice();
status_t UnpublishDevice();
virtual status_t PublishDevice();
virtual status_t UnpublishDevice();
void SetBusy(bool busy);
bool IsBusy() const;