Changeset 80e8482 in mainline for uspace/srv/fs/tmpfs/tmpfs_ops.c


Ignore:
Timestamp:
2008-04-15T03:01:59Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
45f244b
Parents:
d9e9caf
Message:

Add stubs for unimplemented FAT libfs operations.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/tmpfs/tmpfs_ops.c

    rd9e9caf r80e8482  
    7676static bool tmpfs_link_node(void *, void *, const char *);
    7777static int tmpfs_unlink_node(void *, void *);
    78 static void tmpfs_destroy_node(void *);
     78static bool tmpfs_destroy_node(void *);
    7979
    8080/* Implementation of helper functions. */
     
    375375}
    376376
    377 void tmpfs_destroy_node(void *nodep)
     377bool tmpfs_destroy_node(void *nodep)
    378378{
    379379        tmpfs_dentry_t *dentry = (tmpfs_dentry_t *) nodep;
     
    391391                free(dentry->data);
    392392        free(dentry);
     393        return true;
    393394}
    394395
Note: See TracChangeset for help on using the changeset viewer.