Changeset aa85487 in mainline for uspace/app/init/init.c


Ignore:
Timestamp:
2010-03-07T15:11:56Z (14 years ago)
Author:
Lukas Mejdrech <lukasmejdrech@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
aadf01e
Parents:
2e99277 (diff), 137691a (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.
Message:

Merge mainline changes, revision 308

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/init/init.c

    r2e99277 raa85487  
    6262static bool mount_root(const char *fstype)
    6363{
    64         char *opts = "";
     64        const char *opts = "";
    6565        const char *root_dev = "bd/initrd";
    6666       
     
    117117}
    118118
    119 static void spawn(char *fname)
    120 {
    121         char *argv[2];
     119static void spawn(const char *fname)
     120{
     121        const char *argv[2];
    122122        struct stat s;
    123123       
     
    134134}
    135135
    136 static void srv_start(char *fname)
    137 {
    138         char *argv[2];
     136static void srv_start(const char *fname)
     137{
     138        const char *argv[2];
    139139        task_id_t id;
    140140        task_exit_t texit;
     
    168168}
    169169
    170 static void console(char *dev)
    171 {
    172         char *argv[3];
     170static void console(const char *dev)
     171{
     172        const char *argv[3];
    173173        char hid_in[DEVMAP_NAME_MAXLEN];
    174174        int rc;
     
    193193}
    194194
    195 static void getterm(char *dev, char *app)
    196 {
    197         char *argv[4];
     195static void getterm(const char *dev, const char *app)
     196{
     197        const char *argv[4];
    198198        char term[DEVMAP_NAME_MAXLEN];
    199199        int rc;
Note: See TracChangeset for help on using the changeset viewer.