llvm/lldb/source/Target/QueueList.cpp

//===-- QueueList.cpp -----------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "lldb/Target/Queue.h"
#include "lldb/Target/Process.h"
#include "lldb/Target/QueueList.h"

usingnamespacelldb;
usingnamespacelldb_private;

QueueList::QueueList(Process *process)
    :{}

QueueList::~QueueList() {}

uint32_t QueueList::GetSize() {}

lldb::QueueSP QueueList::GetQueueAtIndex(uint32_t idx) {}

void QueueList::Clear() {}

void QueueList::AddQueue(QueueSP queue_sp) {}

lldb::QueueSP QueueList::FindQueueByID(lldb::queue_id_t qid) {}

lldb::QueueSP QueueList::FindQueueByIndexID(uint32_t index_id) {}

std::mutex &QueueList::GetMutex() {}