Changeset 26360f7 in mainline for uspace/srv
- Timestamp:
- 2009-06-12T19:44:25Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1806e5d
- Parents:
- 9ae22ba
- Location:
- uspace/srv
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fb/fb.c
r9ae22ba r26360f7 55 55 #include <io/style.h> 56 56 #include <async.h> 57 #include <fibril.h> 57 58 #include <bool.h> 58 59 … … 1039 1040 * @return false if the call was not handled byt this function, true otherwise 1040 1041 * 1041 * Note: this function is not thread ssafe, you would have1042 * to redefine static variables with __thread1042 * Note: this function is not thread-safe, you would have 1043 * to redefine static variables with fibril_local. 1043 1044 * 1044 1045 */ -
uspace/srv/vfs/vfs_file.c
r9ae22ba r26360f7 41 41 #include <assert.h> 42 42 #include <bool.h> 43 #include <fibril.h> 43 44 #include <fibril_sync.h> 44 45 #include "vfs.h" … … 59 60 * don't need to protect it by a futex. 60 61 */ 61 __threadvfs_file_t **files = NULL;62 fibril_local vfs_file_t **files = NULL; 62 63 63 64 /** Initialize the table of open files. */
Note:
See TracChangeset
for help on using the changeset viewer.