Changeset 08e3ca4 in mainline for uspace/srv/net/il/arp/arp_module.c
- Timestamp:
- 2010-11-03T22:31:48Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d8f95529
- Parents:
- 02314f8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/arp/arp_module.c
r02314f8 r08e3ca4 77 77 78 78 rc = arp_initialize(client_connection); 79 if (rc != EOK) { 80 pm_destroy(); 81 return rc; 82 } 79 if (rc != EOK) 80 goto out; 83 81 84 82 rc = REGISTER_ME(SERVICE_ARP, &phonehash); 85 if (rc != EOK) { 86 pm_destroy(); 87 return rc; 88 } 83 if (rc != EOK) 84 goto out; 89 85 90 86 async_manager(); 91 87 88 out: 92 89 pm_destroy(); 93 return EOK;90 return rc; 94 91 } 95 92
Note:
See TracChangeset
for help on using the changeset viewer.