blob: f57891ff56bfbbb33cc4d36c7c8a83660701de43 (
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
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* thread_rpc.cpp - Inter-thread procedure call
*/
#include "thread.h"
#include "thread_rpc.h"
using namespace libcamera;
void ThreadRpc::notifyReception()
{
{
libcamera::MutexLocker locker(mutex_);
delivered_ = true;
}
cv_.notify_one();
}
void ThreadRpc::waitDelivery()
{
libcamera::MutexLocker locker(mutex_);
cv_.wait(locker, [&] { return delivered_; });
}
|