Changeset 53d6ac3d in mainline
- Timestamp:
- 2011-08-16T16:03:54Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1f419ecf
- Parents:
- 30c78c0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/init/init.c
r30c78c0 r53d6ac3d 66 66 #define APP_GETTERM "/app/getterm" 67 67 68 /** Print banner */ 68 69 static void info_print(void) 69 70 { … … 71 72 } 72 73 74 /** Report mount operation success */ 73 75 static bool mount_report(const char *desc, const char *mntpt, 74 76 const char *fstype, const char *dev, int rc) … … 100 102 } 101 103 104 /** Mount root filesystem 105 * 106 * The operation blocks until the root filesystem 107 * server is ready for mounting. 108 * 109 * @param[in] fstype Root filesystem type. 110 * 111 * @return True on success. 112 * @return False on failure. 113 * 114 */ 102 115 static bool mount_root(const char *fstype) 103 116 { … … 113 126 } 114 127 128 /** Mount locfs filesystem 129 * 130 * The operation blocks until the locfs filesystem 131 * server is ready for mounting. 132 * 133 * @return True on success. 134 * @return False on failure. 135 * 136 */ 115 137 static bool mount_locfs(void) 116 138 { … … 157 179 rc = task_wait(id, &texit, &retval); 158 180 if (rc != EOK) { 159 printf("%s: Error waiting for %s (%s (\n", NAME, fname,181 printf("%s: Error waiting for %s (%s)\n", NAME, fname, 160 182 str_error(rc)); 161 183 return;
Note:
See TracChangeset
for help on using the changeset viewer.