summaryrefslogtreecommitdiff
path: root/include/libcamera/fence.h
blob: c0c916c264b45ee0424260f1e31ed89cec9213a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2021, Google Inc.
 *
 * internal/fence.h - Synchronization fence
 */

#pragma once

#include <libcamera/base/class.h>
#include <libcamera/base/unique_fd.h>

namespace libcamera {

class Fence
{
public:
	Fence(UniqueFD fd);

	bool isValid() const { return fd_.isValid(); }
	const UniqueFD &fd() const { return fd_; }

	UniqueFD release() { return std::move(fd_); }

private:
	LIBCAMERA_DISABLE_COPY_AND_MOVE(Fence)

	UniqueFD fd_;
};

} /* namespace libcamera */