summaryrefslogtreecommitdiff
path: root/pjlib/src/pj/extra-exports.c
blob: 4cc12e3f5e1109eeceeb4676af4acdce923fd767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* $Header: /pjproject-0.3/pjlib/src/pj/extra-exports.c 1     10/29/05 11:56a Bennylp $ */
/*
 * $Log: /pjproject-0.3/pjlib/src/pj/extra-exports.c $
 * 
 * 1     10/29/05 11:56a Bennylp
 * Version 0.3-pre2
 *
 */

/*
 * This file contains code to export extra symbols from Linux kernel.
 * It should be copied to Linux kernel source tree and added to
 * Linux kernel combilation.
 *
 * This file is part of PJLIB project.
 */
#include <linux/module.h>
#include <linux/syscalls.h>

EXPORT_SYMBOL(sys_select);

EXPORT_SYMBOL(sys_epoll_create);
EXPORT_SYMBOL(sys_epoll_ctl);
EXPORT_SYMBOL(sys_epoll_wait);

EXPORT_SYMBOL(sys_socket);
EXPORT_SYMBOL(sys_bind);
EXPORT_SYMBOL(sys_getpeername);
EXPORT_SYMBOL(sys_getsockname);
EXPORT_SYMBOL(sys_sendto);
EXPORT_SYMBOL(sys_recvfrom);
EXPORT_SYMBOL(sys_getsockopt);
EXPORT_SYMBOL(sys_setsockopt);
EXPORT_SYMBOL(sys_listen);
EXPORT_SYMBOL(sys_shutdown);
EXPORT_SYMBOL(sys_connect);
EXPORT_SYMBOL(sys_accept);