Changes in uspace/lib/c/generic/net/modules.c [45bb1d2:7880d58] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/net/modules.c
r45bb1d2 r7880d58 63 63 int answer_count) 64 64 { 65 / * Choose the most efficient answer function */65 // choose the most efficient answer function 66 66 if (answer || (!answer_count)) { 67 67 switch (answer_count) { … … 178 178 int phone; 179 179 180 / * If no timeout is set */180 // if no timeout is set 181 181 if (timeout <= 0) 182 182 return async_connect_me_to_blocking(PHONE_NS, need, 0, 0); … … 187 187 return phone; 188 188 189 / * Abort if no time is left */189 // end if no time is left 190 190 if (timeout <= 0) 191 191 return ETIMEOUT; 192 192 193 / * Wait the minimum of the module wait time and the timeout */193 // wait the minimum of the module wait time and the timeout 194 194 usleep((timeout <= MODULE_WAIT_TIME) ? 195 195 timeout : MODULE_WAIT_TIME); … … 214 214 ipc_callid_t callid; 215 215 216 / * Fetch the request */216 // fetch the request 217 217 if (!async_data_read_receive(&callid, &length)) 218 218 return EINVAL; 219 219 220 / * Check the requested data size */220 // check the requested data size 221 221 if (length < data_length) { 222 222 async_data_read_finalize(callid, data, length); … … 224 224 } 225 225 226 / * Send the data */226 // send the data 227 227 return async_data_read_finalize(callid, data, data_length); 228 228 } … … 242 242 if (answer) { 243 243 IPC_SET_RETVAL(*answer, 0); 244 / * Just to be precise */244 // just to be precize 245 245 IPC_SET_IMETHOD(*answer, 0); 246 246 IPC_SET_ARG1(*answer, 0);
Note:
See TracChangeset
for help on using the changeset viewer.