| 1912 | } |
| 1913 | |
| 1914 | void camera_context::remove_queue(u64 key) |
| 1915 | { |
| 1916 | std::lock_guard lock(mutex); |
| 1917 | { |
| 1918 | std::lock_guard lock_data_map(mutex_notify_data_map); |
| 1919 | |
| 1920 | notify_data_map.erase(key); |
| 1921 | } |
| 1922 | } |
| 1923 | |
| 1924 | u32 camera_context::pbuf_next_index() const |
| 1925 | { |
no test coverage detected