diff options
| author | 2021-07-27 20:06:25 +0000 | |
|---|---|---|
| committer | 2021-07-27 20:15:23 +0000 | |
| commit | 353be2306c7b3b640755fbf9b95aa0c75c6a7cfe (patch) | |
| tree | 1b185980a814f2cca0dee9a0dad69ef29e50a527 /src/common/host_memory.cpp | |
| parent | host_memory: Enable Linux implementation on FreeBSD (diff) | |
| download | yuzu-353be2306c7b3b640755fbf9b95aa0c75c6a7cfe.tar.gz yuzu-353be2306c7b3b640755fbf9b95aa0c75c6a7cfe.tar.xz yuzu-353be2306c7b3b640755fbf9b95aa0c75c6a7cfe.zip | |
host_memory: Add workaround for FreeBSD 12
src/common/host_memory.cpp:360:14: error: use of undeclared identifier
'memfd_create'
fd = memfd_create("HostMemory", 0);
^
Diffstat (limited to 'src/common/host_memory.cpp')
| -rw-r--r-- | src/common/host_memory.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/host_memory.cpp b/src/common/host_memory.cpp index 49e58d250..6661244cf 100644 --- a/src/common/host_memory.cpp +++ b/src/common/host_memory.cpp | |||
| @@ -357,7 +357,12 @@ public: | |||
| 357 | }); | 357 | }); |
| 358 | 358 | ||
| 359 | // Backing memory initialization | 359 | // Backing memory initialization |
| 360 | #if defined(__FreeBSD__) && __FreeBSD__ < 13 | ||
| 361 | // XXX Drop after FreeBSD 12.* reaches EOL on 2024-06-30 | ||
| 362 | fd = shm_open(SHM_ANON, O_RDWR, 0600); | ||
| 363 | #else | ||
| 360 | fd = memfd_create("HostMemory", 0); | 364 | fd = memfd_create("HostMemory", 0); |
| 365 | #endif | ||
| 361 | if (fd == -1) { | 366 | if (fd == -1) { |
| 362 | LOG_CRITICAL(HW_Memory, "memfd_create failed: {}", strerror(errno)); | 367 | LOG_CRITICAL(HW_Memory, "memfd_create failed: {}", strerror(errno)); |
| 363 | throw std::bad_alloc{}; | 368 | throw std::bad_alloc{}; |