forked from len0rd/rockbox
iPod Classic CE-ATA Support (Part 1 of 4: Cacheline align some statically allocated sector buffers)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29444 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b25f17200f
commit
751303c2ac
5 changed files with 12 additions and 10 deletions
|
@ -57,9 +57,9 @@ struct dirent_uncached {
|
|||
#ifndef DIR_DEFINED
|
||||
typedef struct {
|
||||
#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
|
||||
struct fat_dir fatdir CACHEALIGN_ATTR;
|
||||
bool busy;
|
||||
long startcluster;
|
||||
struct fat_dir fatdir;
|
||||
struct dirent_uncached theent;
|
||||
#ifdef HAVE_MULTIVOLUME
|
||||
int volumecounter; /* running counter for faked volume entries */
|
||||
|
@ -69,7 +69,7 @@ typedef struct {
|
|||
void *dir; /* actually a DIR* dir */
|
||||
char *name;
|
||||
#endif
|
||||
} DIR_UNCACHED;
|
||||
} DIR_UNCACHED CACHEALIGN_ATTR;
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue