mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:17:46 +00:00
Integrate ext2 from VFS into Kernel.
This commit is contained in:
parent
aec8ab0a60
commit
9171521752
45 changed files with 662 additions and 1085 deletions
|
@ -2,18 +2,18 @@
|
|||
|
||||
#include "types.h"
|
||||
#include "IPC.h"
|
||||
#include "DoublyLinkedList.h"
|
||||
#include "String.h"
|
||||
#include "InlineLinkedList.h"
|
||||
#include <AK/String.h>
|
||||
#include "TSS.h"
|
||||
#include "Vector.h"
|
||||
#include <AK/Vector.h>
|
||||
#include "i386.h"
|
||||
|
||||
//#define TASK_SANITY_CHECKS
|
||||
|
||||
class FileHandle;
|
||||
|
||||
class Task : public DoublyLinkedListNode<Task> {
|
||||
friend class DoublyLinkedListNode<Task>;
|
||||
class Task : public InlineLinkedListNode<Task> {
|
||||
friend class InlineLinkedListNode<Task>;
|
||||
public:
|
||||
#ifdef TASK_SANITY_CHECKS
|
||||
static void checkSanity(const char* msg = nullptr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue