Changeset 297f1197 in mainline


Ignore:
Timestamp:
2008-05-04T12:43:18Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f520905
Parents:
869e546
Message:

Add a dedicated source file for handling FAT indices.

Location:
uspace/srv/fs/fat
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/Makefile

    r869e546 r297f1197  
    4545SOURCES = \
    4646        fat.c \
    47         fat_ops.c
     47        fat_ops.c \
     48        fat_idx.c
    4849
    4950OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
  • uspace/srv/fs/fat/fat.h

    r869e546 r297f1197  
    215215extern void fat_lookup(ipc_callid_t, ipc_call_t *);
    216216
     217extern fat_idx_t *fat_idx_map(fat_cluster_t, unsigned);
     218
    217219#endif
    218220
  • uspace/srv/fs/fat/fat_ops.c

    r869e546 r297f1197  
    111111{
    112112        /* TODO */
    113 }
    114 
    115 static fat_idx_t *fat_idx_map(fat_cluster_t pfc, unsigned pdi)
    116 {
    117         return NULL;    /* TODO */
    118113}
    119114
Note: See TracChangeset for help on using the changeset viewer.