storage/io_backend/force_link.h
| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #pragma once | ||
| 2 | |||
| 3 | extern "C" void RecStoreForceLinkIoUringBackend(); | ||
| 4 | #ifdef RECSTORE_ENABLE_SPDK | ||
| 5 | extern "C" void RecStoreForceLinkSpdkBackend(); | ||
| 6 | #endif | ||
| 7 | |||
| 8 | 10 | inline void ForceLinkIOBackends() { | |
| 9 | 10 | RecStoreForceLinkIoUringBackend(); | |
| 10 | #ifdef RECSTORE_ENABLE_SPDK | ||
| 11 | RecStoreForceLinkSpdkBackend(); | ||
| 12 | #endif | ||
| 13 | 10 | } | |
| 14 |