aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llvfs/llvfs.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:50 -0500
committerJacek Antonelli2008-08-15 23:45:50 -0500
commit2a4dea528f670b9bb1f77ef27a8a1dd16603d114 (patch)
tree95c68e362703c9099d571ecbdc6142b1cda1e005 /linden/indra/llvfs/llvfs.h
parentSecond Life viewer sources 1.20.6 (diff)
downloadmeta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.zip
meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.gz
meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.bz2
meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.xz
Second Life viewer sources 1.20.7
Diffstat (limited to 'linden/indra/llvfs/llvfs.h')
-rw-r--r--linden/indra/llvfs/llvfs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/llvfs/llvfs.h b/linden/indra/llvfs/llvfs.h
index e07e85a..7465bb4 100644
--- a/linden/indra/llvfs/llvfs.h
+++ b/linden/indra/llvfs/llvfs.h
@@ -131,8 +131,8 @@ protected:
131 void sync(LLVFSFileBlock *block, BOOL remove = FALSE); 131 void sync(LLVFSFileBlock *block, BOOL remove = FALSE);
132 void presizeDataFile(const U32 size); 132 void presizeDataFile(const U32 size);
133 133
134 static FILE *openAndLock(const char *filename, const char *mode, BOOL read_lock); 134 static LLFILE *openAndLock(const char *filename, const char *mode, BOOL read_lock);
135 static void unlockAndClose(FILE *fp); 135 static void unlockAndClose(LLFILE *fp);
136 136
137 // Can initiate LRU-based file removal to make space. 137 // Can initiate LRU-based file removal to make space.
138 // The immune file block will not be removed. 138 // The immune file block will not be removed.
@@ -153,8 +153,8 @@ protected:
153 typedef std::multimap<U32, LLVFSBlock*> blocks_location_map_t; 153 typedef std::multimap<U32, LLVFSBlock*> blocks_location_map_t;
154 blocks_location_map_t mFreeBlocksByLocation; 154 blocks_location_map_t mFreeBlocksByLocation;
155 155
156 FILE *mDataFP; 156 LLFILE *mDataFP;
157 FILE *mIndexFP; 157 LLFILE *mIndexFP;
158 158
159 std::deque<S32> mIndexHoles; 159 std::deque<S32> mIndexHoles;
160 160