add init_module/delete_module syscall wrappers
[uclibc-ng.git] / libc / sysdeps / linux / common / module.c
blob146a43e7cf51ed28491ebfc02cf6cee36903454d
1 /*
2 * init_module()/delete_module() for uClibc
4 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
6 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
7 */
9 #include <sys/syscall.h>
11 #ifdef __NR_init_module
12 int init_module(void *first, void *second, void *third, void *fourth, void *fifth);
13 /* This may have 5 arguments (for old 2.0 kernels) or 2 arguments
14 * (for 2.2 and 2.4 kernels). Use the greatest common denominator,
15 * and let the kernel cope with whatever it gets. It's good at that. */
16 _syscall5(int, init_module, void *, first, void *, second, void *, third,
17 void *, fourth, void *, fifth)
18 #endif
20 #ifdef __NR_delete_module
21 int delete_module(const char *name, unsigned int flags);
22 _syscall2(int, delete_module, const char *, name, unsigned int, flags)
23 #endif