diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/um/drivers/cow_sys.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/um/drivers/cow_sys.h')
-rw-r--r-- | arch/um/drivers/cow_sys.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/arch/um/drivers/cow_sys.h b/arch/um/drivers/cow_sys.h new file mode 100644 index 000000000000..c83fc5d68936 --- /dev/null +++ b/arch/um/drivers/cow_sys.h | |||
@@ -0,0 +1,48 @@ | |||
1 | #ifndef __COW_SYS_H__ | ||
2 | #define __COW_SYS_H__ | ||
3 | |||
4 | #include "kern_util.h" | ||
5 | #include "user_util.h" | ||
6 | #include "os.h" | ||
7 | #include "user.h" | ||
8 | |||
9 | static inline void *cow_malloc(int size) | ||
10 | { | ||
11 | return(um_kmalloc(size)); | ||
12 | } | ||
13 | |||
14 | static inline void cow_free(void *ptr) | ||
15 | { | ||
16 | kfree(ptr); | ||
17 | } | ||
18 | |||
19 | #define cow_printf printk | ||
20 | |||
21 | static inline char *cow_strdup(char *str) | ||
22 | { | ||
23 | return(uml_strdup(str)); | ||
24 | } | ||
25 | |||
26 | static inline int cow_seek_file(int fd, unsigned long long offset) | ||
27 | { | ||
28 | return(os_seek_file(fd, offset)); | ||
29 | } | ||
30 | |||
31 | static inline int cow_file_size(char *file, unsigned long long *size_out) | ||
32 | { | ||
33 | return(os_file_size(file, size_out)); | ||
34 | } | ||
35 | |||
36 | static inline int cow_write_file(int fd, char *buf, int size) | ||
37 | { | ||
38 | return(os_write_file(fd, buf, size)); | ||
39 | } | ||
40 | |||
41 | #endif | ||
42 | |||
43 | /* | ||
44 | * --------------------------------------------------------------------------- | ||
45 | * Local variables: | ||
46 | * c-file-style: "linux" | ||
47 | * End: | ||
48 | */ | ||