Rev 4528 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4528 | Rev 4555 | ||
|---|---|---|---|
| Line 55... | Line 55... | ||
| 55 | * |
55 | * |
| 56 | * Allocation of the open files table is deferred until the client makes the |
56 | * Allocation of the open files table is deferred until the client makes the |
| 57 | * first VFS_OPEN operation. |
57 | * first VFS_OPEN operation. |
| 58 | * |
58 | * |
| 59 | * This resource being per-connection and, in the first place, per-fibril, we |
59 | * This resource being per-connection and, in the first place, per-fibril, we |
| 60 | * don't need to protect it by a futex. |
60 | * don't need to protect it by a mutex. |
| 61 | */ |
61 | */ |
| 62 | fibril_local vfs_file_t **files = NULL; |
62 | fibril_local vfs_file_t **files = NULL; |
| 63 | 63 | ||
| 64 | /** Initialize the table of open files. */ |
64 | /** Initialize the table of open files. */ |
| 65 | bool vfs_files_init(void) |
65 | bool vfs_files_init(void) |