Home |
RTTarget-32 Programming Manual System Management BIOS (SMBIOS) Advanced Programmable Interrupt Controller (APIC) Advanced Configuration and Power Interface (ACPI) Tables Function RTRTHOpenSharedMemPartition Function RTRTHCloseSharedMemPartition Function RTRTHLockSharedMemPartition Function RTRTHUnlockSharedMemPartition |
Function RTRTHOpenSharedMemPartitionFunction RTRTHOpenSharedMemPartition opens a shared memory area defined in the Hypervisor configuration file: void * RTRTHOpenSharedMemPartition(const char * Name, UINT * Size); ParametersNamePointer to the zero-terminates name of the shared memory partition to open. SizePointer to a variable to receive the size in bytes of the shared memory partition. This parameter can be NULL. return valueA pointer to the shared memory partition or NULL on failure. At most 32 shared memory partitions may be open at the same time. The returned pointer may be used to read from and write to the shared memory. Function RTRTHCloseSharedMemPartition
|