BarryServer : Git

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

// Related

Nucleus

Barry CPU specific segment c738dbb (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 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