mpiCaptureMemorySet

Declaration

long mpiCaptureMemorySet(MPICapture  capture,
                         void        *dst,
                         const void  *src,
                         long        count) 
 

Required Header: capture.h
Change History: Modified in the 03.03.00

Description

mpiCaptureMemorySet copies count bytes of application memory (starting at address src) and writes them into a Capture object's (capture) memory (starting at address dst).

Return Values
MPIMessageOK

Sample Code


/* captureDataGet(...) demonstrates how to read sample counter 
of a capture object. mpiCaptureMemory(...) obtains the capture
control memory pointer. The pointer's address is then passed
into mpiCaptureMemoryGet(...) to obtain the sampleCounter value.
Note: MPIXmpCapture *memory must be casted as (void *) in
mpiCaptureMemory.
*/

long captureDataGet(MPICapture  capture, 
                    long        *sampleCounter)
{

   MPIXmpCapture *memory;
   long          returnValue;

   /* Get capture control memory pointer */
   returnValue = 
   mpiCaptureMemory(capture, 
                   (void *)&memory, NULL);

   /* Get capture sample counter */
   if(returnValue == MPIMessageOK)
   {

      returnValue = 
         mpiCaptureMemoryGet(capture,
                             sampleCounter,
                             &memory->Data.SampleCounter,
                             sizeof(&memory->Data.SampleCounter));
   }

   return returnValue;
}

See Also

mpiCaptureMemory | mpiCaptureMemoryGet