1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2024-07-05 02:39:49 +03:00
ben-blinkenlights/libubb/include/ubb/physmem.h
Werner Almesberger a8f905a85f libubb/physmem.c: new function physmem_flush to flush cached writes to memory
This is mainly a wrapper for the "cacheflush" system call.
2013-01-15 23:30:02 -03:00

25 lines
653 B
C

/*
* physmem.h - Physical memory translator and allocator
*
* Written 2013 by Werner Almesberger
* Copyright 2013 Werner Almesberger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#ifndef UBB_PHYSMEM_H
#define UBB_PHYSMEM_H
#include <sys/types.h>
void *physmem_malloc(size_t size);
void *physmem_calloc(size_t size);
unsigned long physmem_xlat(void *v);
int physmem_flush(const void *data, size_t size);
#endif /* !UBB_PHYSMEM_H */