Exemplo n.º 1
0
        public NvGpuVmm(AMemory Memory)
        {
            this.Memory = Memory;

            Cache = new NvGpuVmmCache();

            PageTable = new long[PTLvl0Size][];
        }
Exemplo n.º 2
0
        public NvGpuVmm(AMemory Memory)
        {
            this.Memory = Memory;

            Maps = new ConcurrentDictionary <long, MappedMemory>();

            Cache = new NvGpuVmmCache();

            PageTable = new long[PTLvl0Size][];
        }