summaryrefslogtreecommitdiff
path: root/firmware/common/file.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-09-01 21:29:34 +0000
committerThomas Martitz <kugel@rockbox.org>2010-09-01 21:29:34 +0000
commit6eaab4d00446c070c655f0e6c9a872532a776b6f (patch)
tree69610996dd0a6092459b14e164d4e48e03b1e5bb /firmware/common/file.c
parent8e0a0babc57db3e9edc06f3e269fb47c27292ed5 (diff)
downloadrockbox-6eaab4d00446c070c655f0e6c9a872532a776b6f.tar.gz
rockbox-6eaab4d00446c070c655f0e6c9a872532a776b6f.zip
Ged rid of uisimulator/common/io.c for android builds.
Use host's functions for file i/o directly (open(), close() ,etc.), not the sim_* variants. Some dir functions need to be wrapped still because we need to cache the parents dir's path (host's dirent doesn't let us know). For the same reason (incompatibility) with host's dirent) detach some members from Rockbox' dirent struct and put it into an extra one, the values can be retrieved via the new dir_get_info(). Get rid of the sim_ prefix for sleep as well and change the signature to unix sleep(). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27968 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/common/file.c')
-rw-r--r--firmware/common/file.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/common/file.c b/firmware/common/file.c
index 6beec9f606..53a1a35b31 100644
--- a/firmware/common/file.c
+++ b/firmware/common/file.c
@@ -124,8 +124,8 @@ static int open_internal(const char* pathname, int flags, bool use_cache)
124 ce->startcluster, 124 ce->startcluster,
125 &(file->fatfile), 125 &(file->fatfile),
126 NULL); 126 NULL);
127 file->size = ce->size; 127 file->size = ce->info.size;
128 file->attr = ce->attribute; 128 file->attr = ce->info.attribute;
129 file->cacheoffset = -1; 129 file->cacheoffset = -1;
130 file->fileoffset = 0; 130 file->fileoffset = 0;
131 131
@@ -169,8 +169,8 @@ static int open_internal(const char* pathname, int flags, bool use_cache)
169 entry->startcluster, 169 entry->startcluster,
170 &(file->fatfile), 170 &(file->fatfile),
171 &(dir->fatdir)); 171 &(dir->fatdir));
172 file->size = file->trunc ? 0 : entry->size; 172 file->size = file->trunc ? 0 : entry->info.size;
173 file->attr = entry->attribute; 173 file->attr = entry->info.attribute;
174 break; 174 break;
175 } 175 }
176 } 176 }