Ignore:
File:
1 edited

Legend:

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

    raadf01e 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.