Changeset 7715994 in mainline for uspace/app/init/init.c
- Timestamp:
- 2010-03-13T12:17:02Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6ba20a6b
- Parents:
- d0febca (diff), 2070570 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/init/init.c
rd0febca r7715994 62 62 static bool mount_root(const char *fstype) 63 63 { 64 c har *opts = "";64 const char *opts = ""; 65 65 const char *root_dev = "bd/initrd"; 66 66 … … 117 117 } 118 118 119 static void spawn(c har *fname)120 { 121 c har *argv[2];119 static void spawn(const char *fname) 120 { 121 const char *argv[2]; 122 122 struct stat s; 123 123 … … 134 134 } 135 135 136 static void srv_start(c har *fname)137 { 138 c har *argv[2];136 static void srv_start(const char *fname) 137 { 138 const char *argv[2]; 139 139 task_id_t id; 140 140 task_exit_t texit; … … 168 168 } 169 169 170 static void console(c har *dev)171 { 172 c har *argv[3];170 static void console(const char *dev) 171 { 172 const char *argv[3]; 173 173 char hid_in[DEVMAP_NAME_MAXLEN]; 174 174 int rc; … … 193 193 } 194 194 195 static void getterm(c har *dev,char *app)196 { 197 c har *argv[4];195 static void getterm(const char *dev, const char *app) 196 { 197 const char *argv[4]; 198 198 char term[DEVMAP_NAME_MAXLEN]; 199 199 int rc;
Note:
See TracChangeset
for help on using the changeset viewer.