Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Previous Book Contents Book Index Next

Inside Macintosh: Memory /
Chapter 3 - Virtual Memory Manager / Virtual Memory Manager Reference
Routines / Virtual Memory Debugger Support Routines


DebuggerUnlockMemory

To reverse the effects of DebuggerLockMemory, use the DebuggerUnlockMemory function.

FUNCTION DebuggerUnlockMemory (address: UNIV Ptr; count: LongInt):
                                 OSErr;
address
The starting address of the range of memory that is to be unlocked.
count
The size, in bytes, of the range of memory that is to be unlocked.
DESCRIPTION
The DebuggerUnlockMemory function makes the portion of the address space beginning at address and having a size of count bytes movable in real memory and eligible for paging again.

If the address parameter supplied to the DebuggerUnlockMemory function is not on a page boundary, then it is rounded down to the nearest page boundary. Similarly, if the specified range does not end on a page boundary, the count parameter is rounded up so that the entire range of memory is unlocked.

ASSEMBLY-LANGUAGE INFORMATION
The trap macro and routine selector for the DebuggerUnlockMemory function are
Trap macro Selector
_DebugUtil$0007

The registers on entry and exit for this routine are
Registers on entry
D0Selector code
A0Starting address
A1Number of bytes to hold
Registers on exit
D0Result code

RESULT CODES
noErr0No error
paramErr-50Error in parameter list
notLockedErr-623Specified range of memory is not locked

Previous Book Contents Book Index Next

© Apple Computer, Inc.
3 JUL 1996