blob: 29e1921dab2f6c196dde3b692d213da33dc5f318 [file] [log] [blame]
Benny Prijono4766ffe2005-11-01 17:56:59 +00001/* $Id$
Benny Prijonodd859a62005-11-01 16:42:51 +00002 *
3 */
Benny Prijonodd859a62005-11-01 16:42:51 +00004/*
5 * This file contains code to export extra symbols from Linux kernel.
6 * It should be copied to Linux kernel source tree and added to
7 * Linux kernel combilation.
8 *
9 * This file is part of PJLIB project.
10 */
11#include <linux/module.h>
12#include <linux/syscalls.h>
13
14EXPORT_SYMBOL(sys_select);
15
16EXPORT_SYMBOL(sys_epoll_create);
17EXPORT_SYMBOL(sys_epoll_ctl);
18EXPORT_SYMBOL(sys_epoll_wait);
19
20EXPORT_SYMBOL(sys_socket);
21EXPORT_SYMBOL(sys_bind);
22EXPORT_SYMBOL(sys_getpeername);
23EXPORT_SYMBOL(sys_getsockname);
24EXPORT_SYMBOL(sys_sendto);
25EXPORT_SYMBOL(sys_recvfrom);
26EXPORT_SYMBOL(sys_getsockopt);
27EXPORT_SYMBOL(sys_setsockopt);
28EXPORT_SYMBOL(sys_listen);
29EXPORT_SYMBOL(sys_shutdown);
30EXPORT_SYMBOL(sys_connect);
31EXPORT_SYMBOL(sys_accept);
32