destack.sh
docstemplatesblog
Language
  1. Setup
  2. TypeScript
  3. TypeScript++
  4. Runtime
  5. Standard Library
  6. Web
  7. Node
  8. Systems
  9. Modules
  10. destack:memory
  11. destack:memory/binding
  12. MemoryLockBinding
    1. Members
  13. Configuration
  14. Static Analysis
  15. Dynamic Analysis
  16. Deployment
menu
Language
  1. Setup
  2. TypeScript
  3. TypeScript++
  4. Runtime
  5. Standard Library
  6. Web
  7. Node
  8. Systems
  9. Modules
  10. destack:memory
  11. destack:memory/binding
  12. MemoryLockBinding
    1. Members
  13. Configuration
  14. Static Analysis
  15. Dynamic Analysis
  16. Deployment
Docs/Language/Standard Library/Modules/destack:memory/destack:memory/binding
mdtxt

MemoryLockBinding

import { MemoryLockBinding } from "destack:memory/binding";

Lock binding family.

language/library/src/memory/binding/lock.ds:6:24
1export interface MemoryLockBinding {2    lockMemory(range: VirtualMemoryRange): Result<void, HostError>;3    unlockMemory(range: VirtualMemoryRange): Result<void, HostError>;4}

Members

lockMemory(range: VirtualMemoryRange): Result<void, HostError>

Lock one memory range into physical memory.

unlockMemory(range: VirtualMemoryRange): Result<void, HostError>

Unlock one memory range.

discordxgithub
2026.8.3alpha