BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / blob / master / include / nucleus / types.h

// Related

Nucleus

Barry Per-CPU Scheduler bb0cb77 (3 years, 2 months ago)
#ifndef _NUCLEUS_TYPES_H
#define _NUCLEUS_TYPES_H

/* Driver */
typedef struct Driver Driver;

/* Memory */
typedef struct Page Page;
typedef struct VirtualMemory VirtualMemory;
typedef struct VMRegion VMRegion;

/* Task */
typedef struct Task Task;
typedef struct Scheduler Scheduler;
typedef struct Signals Signals;

/* VFS */
typedef struct FSType FSType;
typedef struct FileSystem FileSystem;
typedef struct Files Files;
typedef struct SuperBlock SuperBlock;
typedef struct SuperOps SuperOps;
typedef struct Inode Inode;
typedef struct InodeOps InodeOps;
typedef struct DirEntry DirEntry;
typedef struct File File;
typedef struct FileOps FileOps;

#endif