diff options
| author | Paul Mackerras <paulus@samba.org> | 2005-09-25 08:51:50 -0400 |
|---|---|---|
| committer | Paul Mackerras <paulus@samba.org> | 2005-09-25 08:51:50 -0400 |
| commit | e5baa396af7560382d2cf3f0871d616b61fc284c (patch) | |
| tree | 6afc166894b8c8b3b2cf6add72a726be14ae2443 /arch/um/include | |
| parent | d6a4c847e43c851cc0ddf73087a730227223f989 (diff) | |
| parent | ef6bd6eb90ad72ee8ee7ba8b271f27102e9a90c1 (diff) | |
Merge from Linus' tree.
Diffstat (limited to 'arch/um/include')
| -rw-r--r-- | arch/um/include/common-offsets.h | 4 | ||||
| -rw-r--r-- | arch/um/include/user.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/arch/um/include/common-offsets.h b/arch/um/include/common-offsets.h index 0aa620970adb..782ac3a3baf9 100644 --- a/arch/um/include/common-offsets.h +++ b/arch/um/include/common-offsets.h | |||
| @@ -12,4 +12,6 @@ DEFINE_STR(UM_KERN_WARNING, KERN_WARNING); | |||
| 12 | DEFINE_STR(UM_KERN_NOTICE, KERN_NOTICE); | 12 | DEFINE_STR(UM_KERN_NOTICE, KERN_NOTICE); |
| 13 | DEFINE_STR(UM_KERN_INFO, KERN_INFO); | 13 | DEFINE_STR(UM_KERN_INFO, KERN_INFO); |
| 14 | DEFINE_STR(UM_KERN_DEBUG, KERN_DEBUG); | 14 | DEFINE_STR(UM_KERN_DEBUG, KERN_DEBUG); |
| 15 | DEFINE(HOST_ELF_CLASS, ELF_CLASS); | 15 | DEFINE(UM_ELF_CLASS, ELF_CLASS); |
| 16 | DEFINE(UM_ELFCLASS32, ELFCLASS32); | ||
| 17 | DEFINE(UM_ELFCLASS64, ELFCLASS64); | ||
diff --git a/arch/um/include/user.h b/arch/um/include/user.h index 57ee9e261228..0f865ef46918 100644 --- a/arch/um/include/user.h +++ b/arch/um/include/user.h | |||
| @@ -14,7 +14,9 @@ extern void *um_kmalloc_atomic(int size); | |||
| 14 | extern void kfree(void *ptr); | 14 | extern void kfree(void *ptr); |
| 15 | extern int in_aton(char *str); | 15 | extern int in_aton(char *str); |
| 16 | extern int open_gdb_chan(void); | 16 | extern int open_gdb_chan(void); |
| 17 | extern int strlcpy(char *, const char *, int); | 17 | /* These use size_t, however unsigned long is correct on both i386 and x86_64. */ |
| 18 | extern unsigned long strlcpy(char *, const char *, unsigned long); | ||
| 19 | extern unsigned long strlcat(char *, const char *, unsigned long); | ||
| 18 | extern void *um_vmalloc(int size); | 20 | extern void *um_vmalloc(int size); |
| 19 | extern void vfree(void *ptr); | 21 | extern void vfree(void *ptr); |
| 20 | 22 | ||
