()
| 119 | } |
| 120 | |
| 121 | func lastRDMAError() string { |
| 122 | msg := C.miniocpp_last_error() |
| 123 | if msg == nil { |
| 124 | return "unknown error" |
| 125 | } |
| 126 | return C.GoString(msg) |
| 127 | } |
| 128 | |
| 129 | // AlignedBuffer allocates a page-aligned buffer of n bytes for use as |
| 130 | // PutObjectOptions.RDMABuffer / GetObjectOptions.RDMABuffer. Release with |
no outgoing calls
no test coverage detected