view TaskManager/kernel/memory/MemorySegment.h @ 534:997d2a73a758

add Application/dynamic_create.cc
author aaa
date Wed, 21 Oct 2009 16:55:28 +0900
parents 5e2d30bfbf23
children 34c3be70b3f8
line wrap: on
line source

#ifndef MEMLSEG
#define MEMLSEG
#include "types.h"

class MemorySegment {
public:
    MemorySegment* next;
    MemorySegment* prev;
    uint16 tag;
    uint16 size;
    memaddr address;
    void* data;
};

typedef MemorySegment *MemorySegmentPtr;
#endif