Changeset 7961a57
- Timestamp:
- Jul 27, 2010, 9:10:43 PM (13 years ago)
- Branches:
- release-1.6
- Children:
- de44b96
- Parents:
- b19e324
- git-author:
- Nelson Elhage <nelhage@mit.edu> (07/15/10 23:23:23)
- git-committer:
- Nelson Elhage <nelhage@mit.edu> (07/27/10 21:10:43)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zephyr.c
r6758c74 r7961a57 179 179 { 180 180 #ifdef HAVE_LIBZEPHYR 181 if(owl_global_is_havezephyr(&g)) 182 return(ZPending()); 181 Code_t code; 182 if(owl_global_is_havezephyr(&g)) { 183 if((code = ZPending()) < 0) { 184 owl_function_debugmsg("Error (%s) in ZPending()\n", 185 error_message(code)); 186 return 0; 187 } 188 return code; 189 } 183 190 #endif 184 191 return 0; … … 1381 1388 #ifdef HAVE_LIBZEPHYR 1382 1389 ZNotice_t notice; 1390 Code_t code; 1383 1391 owl_message *m=NULL; 1384 1392 1385 1393 while(owl_zephyr_zpending() && zpendcount < OWL_MAX_ZEPHYRGRAMS_TO_PROCESS) { 1386 1394 if (owl_zephyr_zpending()) { 1387 ZReceiveNotice(¬ice, NULL); 1395 if ((code = ZReceiveNotice(¬ice, NULL)) != ZERR_NONE) { 1396 owl_function_debugmsg("Error: %s while calling ZReceiveNotice\n", 1397 error_message(code)); 1398 continue; 1399 } 1388 1400 zpendcount++; 1389 1401
Note: See TracChangeset
for help on using the changeset viewer.