[idd] driver: report IVSHMEM size
Some checks failed
build / client (Debug, map[cc:clang cxx:clang++], libdecor) (push) Has been cancelled
build / client (Debug, map[cc:clang cxx:clang++], xdg-shell) (push) Has been cancelled
build / client (Debug, map[cc:gcc cxx:g++], libdecor) (push) Has been cancelled
build / client (Debug, map[cc:gcc cxx:g++], xdg-shell) (push) Has been cancelled
build / client (Release, map[cc:clang cxx:clang++], libdecor) (push) Has been cancelled
build / client (Release, map[cc:clang cxx:clang++], xdg-shell) (push) Has been cancelled
build / client (Release, map[cc:gcc cxx:g++], libdecor) (push) Has been cancelled
build / client (Release, map[cc:gcc cxx:g++], xdg-shell) (push) Has been cancelled
build / module (push) Has been cancelled
build / host-linux (push) Has been cancelled
build / host-windows-cross (push) Has been cancelled
build / host-windows-native (push) Has been cancelled
build / idd (push) Has been cancelled
build / obs (clang) (push) Has been cancelled
build / obs (gcc) (push) Has been cancelled
build / docs (push) Has been cancelled

This commit is contained in:
Quantum
2026-07-26 02:21:23 -04:00
committed by Geoffrey McRae
parent d3d1d48e97
commit 6a0526fc1e

View File

@@ -1,4 +1,4 @@
/** /**
* Looking Glass * Looking Glass
* Copyright © 2017-2026 The Looking Glass Authors * Copyright © 2017-2026 The Looking Glass Authors
* https://looking-glass.io * https://looking-glass.io
@@ -188,6 +188,7 @@ bool CIVSHMEM::Open()
m_size = (size_t)size; m_size = (size_t)size;
m_mem = map.ptr; m_mem = map.ptr;
DEBUG_INFO("IVSHMEM opened, size: %zu MiB", m_size / 1048576);
return true; return true;
} }