| 538 | } |
| 539 | |
| 540 | int async_callback(void* ptr, AsyncResult<ssize_t>* ar) |
| 541 | { |
| 542 | auto host = ptr; |
| 543 | auto object = ar->object; |
| 544 | auto operation = ar->operation; |
| 545 | auto error_number = ar->error_number; |
| 546 | auto result = ar->result; |
| 547 | LOG_DEBUG(VALUE(host), VALUE(object), VALUE(operation), VALUE(error_number), VALUE(result)); |
| 548 | return 0; |
| 549 | } |
| 550 | |
| 551 | TEST(AsyncFS, AsyncFS) |
| 552 | { |