Changeset a4b4b47 in mainline for uspace/srv/fs/tmpfs/tmpfs.c
- Timestamp:
- 2008-06-03T15:11:15Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6a7f6b8
- Parents:
- 536ec42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs.c
r536ec42 ra4b4b47 50 50 #include <libfs.h> 51 51 #include "../../vfs/vfs.h" 52 53 #define NAME "tmpfs" 52 54 53 55 … … 133 135 int vfs_phone; 134 136 135 printf( "TMPFS: HelenOS TMPFS file system server.\n");137 printf(NAME ": HelenOS TMPFS file system server\n"); 136 138 137 139 vfs_phone = ipc_connect_me_to(PHONE_NS, SERVICE_VFS, 0, 0); … … 145 147 tmpfs_connection); 146 148 if (rc != EOK) { 147 printf( "Failed to register the TMPFSfile system (%d)\n", rc);149 printf(NAME ": Failed to register file system (%d)\n", rc); 148 150 return rc; 149 151 } 150 152 151 dprintf("TMPFS filesystem registered, fs_handle=%d.\n", 152 tmpfs_reg.fs_handle); 153 153 printf(NAME ": Accepting connections\n"); 154 154 async_manager(); 155 155 /* not reached */
Note:
See TracChangeset
for help on using the changeset viewer.