This is Unofficial EPICS BASE Doxygen Site
devLibVMEOSD.c File Reference
#include <epicsStdio.h>
#include <epicsExit.h>
#include <rtems.h>
#include <bsp.h>
#include "devLibVME.h"
#include <epicsInterrupt.h>
+ Include dependency graph for devLibVMEOSD.c:

Go to the source code of this file.

Functions

void bcopyLongs (char *source, char *destination, int nlongs)
 

Variables

devLibVMEpdevLibVME
 Pointer to the entry table used by devLibVME routines. More...
 

Function Documentation

void bcopyLongs ( char *  source,
char *  destination,
int  nlongs 
)

Definition at line 364 of file devLibVMEOSD.c.

365 {
366  const long *s = (long *)source;
367  long *d = (long *)destination;
368  while(nlongs--)
369  *d++ = *s++;
370 }

Variable Documentation

devLibVME* pdevLibVME

Pointer to the entry table used by devLibVME routines.

Definition at line 356 of file devLibVMEOSD.c.