[glacier] Move LinkedList to glacier.

This commit is contained in:
Drew Galbraith 2023-06-26 15:01:55 -07:00
parent 08abe776a4
commit 64d355b20d
15 changed files with 28 additions and 46 deletions

View file

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