Changes in uspace/srv/net/netstart/netstart.c [d9fae235:4011fa0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/netstart/netstart.c
rd9fae235 r4011fa0 44 44 #include <stdio.h> 45 45 #include <task.h> 46 #include <str_error.h>47 46 #include <ipc/ipc.h> 48 47 #include <ipc/services.h> … … 72 71 argv[1] = NULL; 73 72 74 int err; 75 if (task_spawn(path, argv, &err) == 0) { 76 fprintf(stderr, "%s: Error spawning %s (%s)\n", NAME, path, 77 str_error(err)); 73 if (task_spawn(path, argv) == 0) { 74 fprintf(stderr, "%s: Error spawning %s\n", NAME, path); 78 75 return false; 79 76 } … … 82 79 } 83 80 81 /** Network startup entry point. 82 * 83 * @param[in] argc The number of command line parameters. 84 * @param[in] argv The command line parameters. 85 * 86 * @returns EOK on success. 87 * @returns EINVAL if the net module cannot be started. 88 * @returns Other error codes as defined for the self_test() function. 89 * @returns Other error codes as defined for the NET_NET_STARTUP message. 90 * 91 */ 84 92 int main(int argc, char *argv[]) 85 93 { … … 97 105 int net_phone = connect_to_service(SERVICE_NETWORKING); 98 106 if (ERROR_OCCURRED(ipc_call_sync_0_0(net_phone, NET_NET_STARTUP))) { 99 fprintf(stderr, "%s: Startuperror %d\n", NAME, ERROR_CODE);107 fprintf(stderr, "%s: Networking error %d\n", NAME, ERROR_CODE); 100 108 return ERROR_CODE; 101 109 }
Note:
See TracChangeset
for help on using the changeset viewer.