/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to pcilib/pagecpy.h

  • Committer: Suren A. Chilingaryan
  • Date: 2015-11-20 04:55:36 UTC
  • Revision ID: csa@suren.me-20151120045536-5sx82ghdzaimuu8w
Fix AVX memory copy

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 * @param[in] size - size of memory region in bytes.
21
21
 * @return - `dst` or NULL on error
22
22
 */
23
 
void pcilib_pagecpy(void *dst, void *src, size_t size);
 
23
void pcilib_pagecpy(void *dst, const void *src, size_t size);
24
24
 
25
25
#ifdef __cplusplus
26
26
}