aboutsummaryrefslogtreecommitdiff
path: root/vm/alloc/TEST/HeapBitmapTest/include/cutils/ashmem.h
blob: 8680c77ab54375d82993fa8b49c7abda203eaa09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef ASHMEM_H_
#define ASHMEM_H_

#include <fcntl.h>

#define ASHMEM_NAME_LEN 128

inline int
ashmem_create_region(const char *name, size_t len)
{
    return open("/dev/zero", O_RDWR);
}

#endif