[PATCH] uml: split memory allocation prototypes out of user.h
[linux-2.6/x86.git] / arch / um / drivers / cow_sys.h
blobc6a308464acb600f3705c4e3a6e0c9fa9c848430
1 #ifndef __COW_SYS_H__
2 #define __COW_SYS_H__
4 #include "kern_util.h"
5 #include "user_util.h"
6 #include "os.h"
7 #include "user.h"
8 #include "um_malloc.h"
10 static inline void *cow_malloc(int size)
12 return(um_kmalloc(size));
15 static inline void cow_free(void *ptr)
17 kfree(ptr);
20 #define cow_printf printk
22 static inline char *cow_strdup(char *str)
24 return(uml_strdup(str));
27 static inline int cow_seek_file(int fd, __u64 offset)
29 return(os_seek_file(fd, offset));
32 static inline int cow_file_size(char *file, unsigned long long *size_out)
34 return(os_file_size(file, size_out));
37 static inline int cow_write_file(int fd, void *buf, int size)
39 return(os_write_file(fd, buf, size));
42 #endif
45 * ---------------------------------------------------------------------------
46 * Local variables:
47 * c-file-style: "linux"
48 * End: