runtime/amalg.c - ktap

  1. /*
  2. * kp_amalg.c - ktapvm kernel module amalgamation.
  3. *
  4. * This file is part of ktap by Jovi Zhangwei.
  5. *
  6. * Copyright (C) 2012-2013 Jovi Zhangwei <jovi.zhangwei@gmail.com>.
  7. *
  8. * ktap is free software; you can redistribute it and/or modify it
  9. * under the terms and conditions of the GNU General Public License,
  10. * version 2, as published by the Free Software Foundation.
  11. *
  12. * ktap is distributed in the hope it will be useful, but WITHOUT
  13. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  15. * more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along with
  18. * this program; if not, write to the Free Software Foundation, Inc.,
  19. * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  20. */

  21. #include "ktap.c"
  22. #include "kp_obj.c"
  23. #include "kp_bcread.c"
  24. #include "kp_str.c"
  25. #include "kp_mempool.c"
  26. #include "kp_tab.c"
  27. #include "kp_transport.c"
  28. #include "kp_vm.c"
  29. #include "kp_events.c"
  30. #include "lib_base.c"
  31. #include "lib_ansi.c"
  32. #include "lib_kdebug.c"
  33. #include "lib_timer.c"
  34. #include "lib_table.c"
  35. #include "lib_net.c"

  36. #ifdef CONFIG_KTAP_FFI
  37. #include "ffi/ffi_call.c"
  38. #include "ffi/ffi_type.c"
  39. #include "ffi/ffi_symbol.c"
  40. #include "ffi/cdata.c"
  41. #include "ffi/ffi_util.c"
  42. #include "lib_ffi.c"
  43. #endif