blob: 83e88f9672835556f83e31b6ed17eb17ee7847fa [file] [log] [blame]
Benny Prijonodd859a62005-11-01 16:42:51 +00001/* $Header: /pjproject-0.3/pjlib/src/pj/extra-exports.c 1 10/29/05 11:56a Bennylp $ */
2/*
3 * $Log: /pjproject-0.3/pjlib/src/pj/extra-exports.c $
4 *
5 * 1 10/29/05 11:56a Bennylp
6 * Version 0.3-pre2
7 *
8 */
9
10/*
11 * This file contains code to export extra symbols from Linux kernel.
12 * It should be copied to Linux kernel source tree and added to
13 * Linux kernel combilation.
14 *
15 * This file is part of PJLIB project.
16 */
17#include <linux/module.h>
18#include <linux/syscalls.h>
19
20EXPORT_SYMBOL(sys_select);
21
22EXPORT_SYMBOL(sys_epoll_create);
23EXPORT_SYMBOL(sys_epoll_ctl);
24EXPORT_SYMBOL(sys_epoll_wait);
25
26EXPORT_SYMBOL(sys_socket);
27EXPORT_SYMBOL(sys_bind);
28EXPORT_SYMBOL(sys_getpeername);
29EXPORT_SYMBOL(sys_getsockname);
30EXPORT_SYMBOL(sys_sendto);
31EXPORT_SYMBOL(sys_recvfrom);
32EXPORT_SYMBOL(sys_getsockopt);
33EXPORT_SYMBOL(sys_setsockopt);
34EXPORT_SYMBOL(sys_listen);
35EXPORT_SYMBOL(sys_shutdown);
36EXPORT_SYMBOL(sys_connect);
37EXPORT_SYMBOL(sys_accept);
38