Changeset 26360f7 in mainline for uspace/srv/vfs


Ignore:
Timestamp:
2009-06-12T19:44:25Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1806e5d
Parents:
9ae22ba
Message:

Use 'fibril_local' modifier for fibril-local variables instead of 'thread'. Since it is decalred in fibril.h, it need not begin with ''.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_file.c

    r9ae22ba r26360f7  
    4141#include <assert.h>
    4242#include <bool.h>
     43#include <fibril.h>
    4344#include <fibril_sync.h>
    4445#include "vfs.h"
     
    5960 * don't need to protect it by a futex.
    6061 */
    61 __thread vfs_file_t **files = NULL;
     62fibril_local vfs_file_t **files = NULL;
    6263
    6364/** Initialize the table of open files. */
Note: See TracChangeset for help on using the changeset viewer.