You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
286 B

#ifndef _VM_H
#define _VM_H 1
/* Pseudo error codes */
#define VMSUSPEND (-996)
#define EFAULT_SRC (-995)
#define EFAULT_DST (-994)
#define PHYS_COPY_CATCH(src, dst, size, a) { \
catch_pagefaults++; \
a = phys_copy(src, dst, size); \
catch_pagefaults--; \
}
#endif