Logo
ApraPipes 1.0
Loading...
Searching...
No Matches
apra_cudamallochost_allocator.h
1#pragma once
2
3#include <cstddef>
4
6{
7 typedef std::size_t size_type;
8 typedef std::ptrdiff_t difference_type;
9
10 static char *malloc(const size_type bytes);
11 static void free(char *const block);
12};
Definition apra_cudamallochost_allocator.h:6
std::ptrdiff_t difference_type
Definition apra_cudamallochost_allocator.h:8
std::size_t size_type
Definition apra_cudamallochost_allocator.h:7
static void free(char *const block)
static char * malloc(const size_type bytes)