From c88a480b9bcabf9aad4f7b66685bbafacc022cc4 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sat, 19 Feb 2011 22:47:48 +0000 Subject: Myriad does not handle multi-threaded access very well, that needs to be addressed, besides that, only a couple more functions need to be added to myriadfs before it's totally ready to have linux installed on it :-P --- src/myriadfs.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/myriadfs.cpp') diff --git a/src/myriadfs.cpp b/src/myriadfs.cpp index d4cf67f..b4ba733 100644 --- a/src/myriadfs.cpp +++ b/src/myriadfs.cpp @@ -257,7 +257,7 @@ int32_t Bu::MyriadFs::lookupInode( Bu::String::const_iterator iStart, Bu::String::const_iterator iEnd = iStart.find('/'); Bu::String sTok( iStart, iEnd ); - sio << "Direcotry component: " << sTok << sio.nl; +// sio << "Direcotry component: " << sTok << sio.nl; Dir lDir = readDir( iNode ); @@ -303,7 +303,7 @@ Bu::MyriadFs::Dir Bu::MyriadFs::readDir( int32_t iNode ) Bu::MyriadStream is = mStore.openStream( 2 ); Dir lDir; - sio << "Reading dir, " << iNumChildren << " entries:" << sio.nl; +// sio << "Reading dir, " << iNumChildren << " entries:" << sio.nl; for( int32_t j = 0; j < iNumChildren; j++ ) { int32_t iChildNode; @@ -316,7 +316,7 @@ Bu::MyriadFs::Dir Bu::MyriadFs::readDir( int32_t iNode ) ms.read( s.sName.getStr(), uLen ); lDir.append( s ); - sio << " " << s.sName << sio.nl; +// sio << " " << s.sName << sio.nl; } return lDir; -- cgit v1.2.3