Changeset 10824
- Timestamp:
- 05/25/11 16:27:17 (13 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fadctrl.cc
r10821 r10824 206 206 void HandleReadTimeout(const bs::error_code &error) 207 207 { 208 if (error && error!=ba::error::basic_errors::operation_aborted) 208 if (error==ba::error::basic_errors::operation_aborted) 209 return; 210 211 if (error) 209 212 { 210 213 ostringstream str; … … 223 226 return; 224 227 } 225 226 if (error==ba::error::basic_errors::operation_aborted)227 return;228 228 229 229 // Check whether the deadline has passed. We compare the deadline -
trunk/FACT++/src/ftmctrl.cc
r10815 r10824 402 402 void HandleReadTimeout(const bs::error_code &error) 403 403 { 404 if (error && error!=ba::error::basic_errors::operation_aborted) 404 if (error==ba::error::basic_errors::operation_aborted) 405 return; 406 407 if (error) 405 408 { 406 409 ostringstream str; … … 419 422 return; 420 423 } 421 422 if (error==ba::error::basic_errors::operation_aborted)423 return;424 424 425 425 // Check whether the deadline has passed. We compare the deadline
Note:
See TracChangeset
for help on using the changeset viewer.