Removed tree balancing code from FileStore.

This commit is contained in:
2016-06-23 00:28:43 -04:00
parent 60d5d2694e
commit c08a8c8b39
4 changed files with 2 additions and 11 deletions
-8
View File
@@ -1,8 +0,0 @@
BRANCH=$1
./scripts/setup_build
make -j4 -C build/sdl clean wombat
rm -rf wombat wombat-*-*.tar.gz
mkdir wombat
git rev-parse HEAD > wombat/revision.txt
cp -pr wombat_path build/sdl/src/wombat/wombat wombat
tar -cvzf wombat-${BRANCH}-`date "+%y%m%d%H%M"`.tar.gz wombat
+1 -1
View File
@@ -1,6 +1,6 @@
#! /usr/bin/env bash
project=`pwd`/
buildDir="build/sdl"
buildDir="build/release"
mkdir -p $buildDir
pushd $buildDir
+1 -1
View File
@@ -1,6 +1,6 @@
#! /usr/bin/env bash
project=`pwd`
buildDir="build/sdl_debug"
buildDir="build/debug"
mkdir -p $buildDir
pushd $buildDir
-1
View File
@@ -22,7 +22,6 @@ class FileStore {
uint32_t version;
FsSize_t size;
FsSize_t rootInode;
bool insertLeft = false; // crude tree balancing mechanism
};
typedef uint16_t InodeId_t;