[glacier] Add a vector class

This commit is contained in:
Drew Galbraith 2023-06-26 15:46:03 -07:00
parent 64d355b20d
commit 02e6b49d90
6 changed files with 126 additions and 30 deletions

View file

@ -1,6 +1,6 @@
#pragma once
#include <glacier/container/linked_list.h>
#include <glacier/container/vector.h>
#include <glacier/memory/ref_ptr.h>
#include "object/process.h"
@ -18,7 +18,7 @@ class ProcessManager {
private:
// TODO: This should be a hashmap.
glcr::LinkedList<glcr::RefPtr<Process>> proc_list_;
glcr::Vector<glcr::RefPtr<Process>> proc_list_;
};
extern ProcessManager* gProcMan;