Changes in uspace/srv/bd/rd/rd.c [79ae36dd:47b7006] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/rd/rd.c
r79ae36dd r47b7006 123 123 while (true) { 124 124 callid = async_get_call(&call); 125 126 if (!IPC_GET_IMETHOD(call)) {125 switch (IPC_GET_IMETHOD(call)) { 126 case IPC_M_PHONE_HUNGUP: 127 127 /* 128 128 * The other side has hung up. 129 * Exit the fibril.129 * Answer the message and exit the fibril. 130 130 */ 131 131 async_answer_0(callid, EOK); 132 132 return; 133 }134 135 switch (IPC_GET_IMETHOD(call)) {136 133 case BD_READ_BLOCKS: 137 134 ba = MERGE_LOUP32(IPC_GET_ARG1(call), … … 246 243 return false; 247 244 } 248 245 249 246 fibril_rwlock_initialize(&rd_lock); 250 247 … … 261 258 printf("%s: Accepting connections\n", NAME); 262 259 async_manager(); 263 260 264 261 /* Never reached */ 265 262 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.