Browse Source

started adding kiro support for RDMA

max 7 years ago
parent
commit
2d34cf8649
3 changed files with 49 additions and 0 deletions
  1. 1 0
      src/myco-agent.c
  2. 18 0
      src/myco-modules-kiro.c
  3. 30 0
      src/myco-modules.h

+ 1 - 0
src/myco-agent.c

@@ -15,6 +15,7 @@
 
 #include "myco-agent.h"
 #include "../src/myco-memory.c"
+#include "myco-modules.h"
 
 #define DEBUG 1
 

+ 18 - 0
src/myco-modules-kiro.c

@@ -0,0 +1,18 @@
+/* Copyright (C) 2016 Max Riechelmann <max.riechelmann@student.kit.edu>
+   (Karlsruhe Institute of Technology)
+   This library is free software; you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published by the
+   Free Software Foundation; either version 2.1 of the License, or (at your
+   option) any later version.
+   This library is distributed in the hope that it will be useful, but WITHOUT
+   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+   FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
+   details.
+   You should have received a copy of the GNU Lesser General Public License along
+   with this library; if not, write to the Free Software Foundation, Inc., 51
+   Franklin St, Fifth Floor, Boston, MA 02110, USA
+   */
+
+#include "../../kiro/kiro-server.h"
+
+

+ 30 - 0
src/myco-modules.h

@@ -0,0 +1,30 @@
+/* Copyright (C) 2016 Max Riechelmann <max.riechelmann@student.kit.edu>
+   (Karlsruhe Institute of Technology)
+   This library is free software; you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published by the
+   Free Software Foundation; either version 2.1 of the License, or (at your
+   option) any later version.
+   This library is distributed in the hope that it will be useful, but WITHOUT
+   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+   FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
+   details.
+   You should have received a copy of the GNU Lesser General Public License along
+   with this library; if not, write to the Free Software Foundation, Inc., 51
+   Franklin St, Fifth Floor, Boston, MA 02110, USA
+   */
+
+/**
+ * SECTION: myco-modules
+ * @Short_description: Includes all available modules for data flow
+ * @Title: MycoModules
+ *
+ * Includes all available modules for data flow.
+ *
+ */
+
+#ifndef __MYCO_MODULES_H
+#define __MYCO_MODULES_H
+
+#include "myco-modules-kiro.c"
+
+#endif //__MYCO_MODULES_H