blob: e042f9d2ba31fb58b2960b4ed6cafc84c88823fc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Export MIPS-specific functions needed for loadable modules.
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 1996, 97, 98, 99, 2000, 01, 03, 04, 05 by Ralf Baechle
9 * Copyright (C) 1999, 2000, 01 Silicon Graphics, Inc.
10 */
11#include <linux/config.h>
12#include <linux/interrupt.h>
13#include <linux/module.h>
14#include <asm/checksum.h>
15#include <asm/pgtable.h>
16#include <asm/uaccess.h>
17
18extern void *__bzero(void *__s, size_t __count);
19extern long __strncpy_from_user_nocheck_asm(char *__to,
20 const char *__from, long __len);
21extern long __strncpy_from_user_asm(char *__to, const char *__from,
22 long __len);
23extern long __strlen_user_nocheck_asm(const char *s);
24extern long __strlen_user_asm(const char *s);
25extern long __strnlen_user_nocheck_asm(const char *s);
26extern long __strnlen_user_asm(const char *s);
27
28/*
29 * String functions
30 */
31EXPORT_SYMBOL(memchr);
32EXPORT_SYMBOL(memcmp);
33EXPORT_SYMBOL(memset);
34EXPORT_SYMBOL(memcpy);
35EXPORT_SYMBOL(memmove);
36EXPORT_SYMBOL(strcat);
37EXPORT_SYMBOL(strchr);
Ralf Baechle875d43e2005-09-03 15:56:16 -070038#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070039EXPORT_SYMBOL(strncmp);
40#endif
41EXPORT_SYMBOL(strlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042EXPORT_SYMBOL(strncat);
43EXPORT_SYMBOL(strnlen);
44EXPORT_SYMBOL(strrchr);
45EXPORT_SYMBOL(strstr);
46
47EXPORT_SYMBOL(kernel_thread);
48
49/*
50 * Userspace access stuff.
51 */
52EXPORT_SYMBOL(__copy_user);
53EXPORT_SYMBOL(__bzero);
54EXPORT_SYMBOL(__strncpy_from_user_nocheck_asm);
55EXPORT_SYMBOL(__strncpy_from_user_asm);
56EXPORT_SYMBOL(__strlen_user_nocheck_asm);
57EXPORT_SYMBOL(__strlen_user_asm);
58EXPORT_SYMBOL(__strnlen_user_nocheck_asm);
59EXPORT_SYMBOL(__strnlen_user_asm);
60
61EXPORT_SYMBOL(csum_partial);
62
63EXPORT_SYMBOL(invalid_pte_table);
64#ifdef CONFIG_GENERIC_IRQ_PROBE
65EXPORT_SYMBOL(probe_irq_mask);
66#endif