Changes in uspace/lib/packet/generic/packet_server.c [376a7fd:88b127b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/packet/generic/packet_server.c
r376a7fd r88b127b 42 42 #include <async.h> 43 43 #include <errno.h> 44 #include <err.h>45 44 #include <fibril_synch.h> 46 45 #include <unistd.h> … … 162 161 size_t max_content, size_t max_suffix) 163 162 { 164 ERROR_DECLARE;165 166 163 packet_t packet; 164 int rc; 167 165 168 166 // already locked … … 177 175 packet_init(packet, addr_len, max_prefix, max_content, max_suffix); 178 176 packet->magic_value = PACKET_MAGIC_VALUE; 179 if (ERROR_OCCURRED(pm_add(packet))) { 177 rc = pm_add(packet); 178 if (rc != EOK) { 180 179 munmap(packet, packet->length); 181 180 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.