module.c 814 B

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