summaryrefslogtreecommitdiff
path: root/cesar/cp/eoc/cco/bw/stub/src/bw.c
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/cp/eoc/cco/bw/stub/src/bw.c')
-rw-r--r--cesar/cp/eoc/cco/bw/stub/src/bw.c46
1 files changed, 46 insertions, 0 deletions
diff --git a/cesar/cp/eoc/cco/bw/stub/src/bw.c b/cesar/cp/eoc/cco/bw/stub/src/bw.c
new file mode 100644
index 0000000000..96453fedae
--- /dev/null
+++ b/cesar/cp/eoc/cco/bw/stub/src/bw.c
@@ -0,0 +1,46 @@
+/* Cesar project {{{
+ *
+ * Copyright (C) 2009 Spidcom
+ *
+ * <<<Licence>>>
+ *
+ * }}} */
+/**
+ * \file cp/eoc/cco/bw/stub/src/bw.c
+ * \brief Create the alloctions for beacon period and create CCo schedule
+ * \ingroup cp_eoc_cco_bw_stub
+ *
+*/
+#include "common/std.h"
+#include "cp/cp.h"
+
+void
+cp_eoc_cco_bw_allocations_adjust (cp_t *ctx, bool adjust)
+ __attribute__((weak));
+void
+cp_eoc_cco_bw_allocations_adjust (cp_t *ctx, bool adjust) {}
+
+void
+cp_eoc_cco_bw_bp_allocations (cp_t *ctx) __attribute__((weak));
+void
+cp_eoc_cco_bw_bp_allocations (cp_t *ctx) {}
+
+void
+cp_eoc_cco_bw_sta_allocations (cp_t *ctx) __attribute__((weak));
+void
+cp_eoc_cco_bw_sta_allocations (cp_t *ctx) {}
+
+void
+cp_eoc_cco_bw_sched_init (cp_t * ctx) __attribute__((weak));
+void
+cp_eoc_cco_bw_sched_init (cp_t * ctx);
+
+void
+cp_eoc_cco_bw_sched_uninit (cp_t * ctx) __attribute__((weak));
+void
+cp_eoc_cco_bw_sched_uninit (cp_t * ctx);
+
+void
+cp_eoc_cco_bw_scheduler (void *user_data) __attribute__ ((weak));
+void
+cp_eoc_cco_bw_scheduler (void *user_data) {}