Changeset e095644 in mainline for uspace/lib/libc/include
- Timestamp:
- 2010-01-24T17:32:20Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 50fda24
- Parents:
- fea0ce6 (diff), ae75e2e3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace/lib/libc/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/adt/hash_table.h
rfea0ce6 re095644 88 88 extern void hash_table_remove(hash_table_t *, unsigned long [], hash_count_t); 89 89 extern void hash_table_destroy(hash_table_t *); 90 extern void hash_table_apply(hash_table_t *, void (*)(link_t *, void *), 91 void *); 90 92 91 93 #endif -
uspace/lib/libc/include/ipc/vfs.h
rfea0ce6 re095644 86 86 VFS_OUT_MOUNTED, 87 87 VFS_OUT_UNMOUNT, 88 VFS_OUT_UNMOUNTED, 88 89 VFS_OUT_SYNC, 89 90 VFS_OUT_STAT, … … 140 141 141 142 /** 142 * L_OPEN is used to indicate that the lookup operation is a part of VFS_ OPEN143 * L_OPEN is used to indicate that the lookup operation is a part of VFS_IN_OPEN 143 144 * call from the client. This means that the server might allocate some 144 145 * resources for the opened file. This flag cannot be passed directly by the … … 147 148 #define L_OPEN 64 148 149 150 /** 151 * L_NOCROSS_LAST_MP is used exclusively during the VFS_IN_UNMOUNT operation. It 152 * tells the lookup routine not to cross the last mount point in the lookup 153 * path. 154 */ 155 #define L_NOCROSS_LAST_MP 128 156 149 157 #endif 150 158 -
uspace/lib/libc/include/vfs/vfs.h
rfea0ce6 re095644 55 55 extern int mount(const char *, const char *, const char *, const char *, 56 56 unsigned int); 57 extern int unmount(const char *); 57 58 58 59 extern void __stdio_init(int filc, fdi_node_t *filv[]);
Note:
See TracChangeset
for help on using the changeset viewer.
