vserver 2.0 rc7
[linux-2.6.git] / arch / um / kernel / ksyms.c
1 /* 
2  * Copyright (C) 2001 - 2004 Jeff Dike (jdike@addtoit.com)
3  * Licensed under the GPL
4  */
5
6 #include "linux/config.h"
7 #include "linux/module.h"
8 #include "linux/string.h"
9 #include "linux/smp_lock.h"
10 #include "linux/spinlock.h"
11 #include "linux/highmem.h"
12 #include "asm/current.h"
13 #include "asm/processor.h"
14 #include "asm/unistd.h"
15 #include "asm/pgalloc.h"
16 #include "asm/pgtable.h"
17 #include "asm/page.h"
18 #include "asm/tlbflush.h"
19 #include "kern_util.h"
20 #include "user_util.h"
21 #include "mem_user.h"
22 #include "os.h"
23 #include "helper.h"
24
25 EXPORT_SYMBOL(stop);
26 EXPORT_SYMBOL(uml_physmem);
27 EXPORT_SYMBOL(set_signals);
28 EXPORT_SYMBOL(get_signals);
29 EXPORT_SYMBOL(kernel_thread);
30 EXPORT_SYMBOL(sys_waitpid);
31 EXPORT_SYMBOL(task_size);
32 EXPORT_SYMBOL(flush_tlb_range);
33 EXPORT_SYMBOL(host_task_size);
34 EXPORT_SYMBOL(arch_validate);
35 EXPORT_SYMBOL(get_kmem_end);
36
37 EXPORT_SYMBOL(page_to_phys);
38 EXPORT_SYMBOL(phys_to_page);
39 EXPORT_SYMBOL(high_physmem);
40 EXPORT_SYMBOL(empty_zero_page);
41 EXPORT_SYMBOL(um_virt_to_phys);
42 EXPORT_SYMBOL(__virt_to_page);
43 EXPORT_SYMBOL(to_phys);
44 EXPORT_SYMBOL(to_virt);
45 EXPORT_SYMBOL(mode_tt);
46 EXPORT_SYMBOL(handle_page_fault);
47 EXPORT_SYMBOL(find_iomem);
48 EXPORT_SYMBOL(end_iomem);
49
50 #ifdef CONFIG_MODE_TT
51 EXPORT_SYMBOL(strncpy_from_user_tt);
52 EXPORT_SYMBOL(copy_from_user_tt);
53 EXPORT_SYMBOL(copy_to_user_tt);
54 #endif
55
56 #ifdef CONFIG_MODE_SKAS
57 EXPORT_SYMBOL(strncpy_from_user_skas);
58 EXPORT_SYMBOL(copy_to_user_skas);
59 EXPORT_SYMBOL(copy_from_user_skas);
60 EXPORT_SYMBOL(clear_user_skas);
61 #endif
62 EXPORT_SYMBOL(uml_strdup);
63
64 EXPORT_SYMBOL(os_stat_fd);
65 EXPORT_SYMBOL(os_stat_file);
66 EXPORT_SYMBOL(os_access);
67 EXPORT_SYMBOL(os_print_error);
68 EXPORT_SYMBOL(os_get_exec_close);
69 EXPORT_SYMBOL(os_set_exec_close);
70 EXPORT_SYMBOL(os_getpid);
71 EXPORT_SYMBOL(os_open_file);
72 EXPORT_SYMBOL(os_read_file);
73 EXPORT_SYMBOL(os_write_file);
74 EXPORT_SYMBOL(os_seek_file);
75 EXPORT_SYMBOL(os_lock_file);
76 EXPORT_SYMBOL(os_ioctl_generic);
77 EXPORT_SYMBOL(os_pipe);
78 EXPORT_SYMBOL(os_file_type);
79 EXPORT_SYMBOL(os_file_mode);
80 EXPORT_SYMBOL(os_file_size);
81 EXPORT_SYMBOL(os_flush_stdout);
82 EXPORT_SYMBOL(os_close_file);
83 EXPORT_SYMBOL(os_set_fd_async);
84 EXPORT_SYMBOL(os_set_fd_block);
85 EXPORT_SYMBOL(helper_wait);
86 EXPORT_SYMBOL(os_shutdown_socket);
87 EXPORT_SYMBOL(os_create_unix_socket);
88 EXPORT_SYMBOL(os_connect_socket);
89 EXPORT_SYMBOL(os_accept_connection);
90 EXPORT_SYMBOL(os_rcv_fd);
91 EXPORT_SYMBOL(run_helper);
92 EXPORT_SYMBOL(start_thread);
93 EXPORT_SYMBOL(dump_thread);
94
95 EXPORT_SYMBOL(do_gettimeofday);
96 EXPORT_SYMBOL(do_settimeofday);
97
98 /* This is here because UML expands open to sys_open, not to a system
99  * call instruction.
100  */
101 EXPORT_SYMBOL(sys_open);
102 EXPORT_SYMBOL(sys_lseek);
103 EXPORT_SYMBOL(sys_read);
104 EXPORT_SYMBOL(sys_wait4);
105
106 #ifdef CONFIG_SMP
107
108 /* required for SMP */
109
110 extern void FASTCALL( __write_lock_failed(rwlock_t *rw));
111 EXPORT_SYMBOL(__write_lock_failed);
112
113 extern void FASTCALL( __read_lock_failed(rwlock_t *rw));
114 EXPORT_SYMBOL(__read_lock_failed);
115
116 #endif
117
118 #ifdef CONFIG_HIGHMEM
119 EXPORT_SYMBOL(kmap);
120 EXPORT_SYMBOL(kunmap);
121 EXPORT_SYMBOL(kmap_atomic);
122 EXPORT_SYMBOL(kunmap_atomic);
123 EXPORT_SYMBOL(kmap_atomic_to_page);
124 #endif
125
126 /*
127  * Overrides for Emacs so that we follow Linus's tabbing style.
128  * Emacs will notice this stuff at the end of the file and automatically
129  * adjust the settings for this buffer only.  This must remain at the end
130  * of the file.
131  * ---------------------------------------------------------------------------
132  * Local variables:
133  * c-file-style: "linux"
134  * End:
135  */