Changeset a64c64d in mainline for uspace/srv/net/net/start/netstart.c


Ignore:
Timestamp:
2010-03-09T22:24:31Z (14 years ago)
Author:
Lukas Mejdrech <lukasmejdrech@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
74520daf
Parents:
9f2ea28
Message:
  • code reorganization (no functional change)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/net/start/netstart.c

    r9f2ea28 ra64c64d  
    7676        int net_phone;
    7777
     78        // print the module label
    7879        printf("Task %d - ", task_get_id());
    7980        printf("%s\n", NAME);
     81
    8082        // run self tests
    8183        ERROR_PROPAGATE(self_test());
    82         // start net service
     84
     85        // start the networking service
    8386        if(! spawn("/srv/net")){
    8487                fprintf(stderr, "Could not spawn net\n");
    8588                return EINVAL;
    8689        }
    87         // start net
     90
     91        // start the networking
    8892        net_phone = connect_to_service(SERVICE_NETWORKING);
    8993        if(ERROR_OCCURRED(ipc_call_sync_0_0(net_phone, NET_NET_STARTUP))){
Note: See TracChangeset for help on using the changeset viewer.