summaryrefslogtreecommitdiff
path: root/mem/errors.h
blob: 3bd740ce46d4b4684fda6e332d2a451542c6e9c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef MEM_ERRORS_H
#define MEM_ERRORS_H

enum mem_error {
	MEM_OK = 0,
	
	/* Returned when an implementation does not support
	   one of the vmap operations */
	MEM_VMAP_UNSUPPORTED,

	/* Returned when a mapping that overlaps with another
	   was requested */
	MEM_VMAP_OVERLAPPING
};

#endif