libcamera: shared_mem_object: Fix compilation with uClibc
uClibc doesn't provide a memfd_create() implementation. Fix it by using a direct syscall when the function isn't available. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Stefan Klug <stefan.klug@ideasonboard.com>
This commit is contained in:
parent
e0318c4776
commit
acf61456cc
2 changed files with 10 additions and 0 deletions
|
@ -12,6 +12,8 @@
|
|||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <sys/mman.h>
|
||||
#include <sys/syscall.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
@ -56,7 +58,11 @@ SharedMem::SharedMem() = default;
|
|||
*/
|
||||
SharedMem::SharedMem(const std::string &name, std::size_t size)
|
||||
{
|
||||
#if HAVE_MEMFD_CREATE
|
||||
int fd = memfd_create(name.c_str(), MFD_CLOEXEC);
|
||||
#else
|
||||
int fd = syscall(SYS_memfd_create, name.c_str(), MFD_CLOEXEC);
|
||||
#endif
|
||||
if (fd < 0)
|
||||
return;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue