aboutsummaryrefslogtreecommitdiff
path: root/src/tasks.c
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2016-06-30 17:18:49 +0200
committerKarel Kočí <cynerd@email.cz>2016-06-30 17:18:49 +0200
commit4e1ce86af16307bf7d42657db07600867c7c4bbc (patch)
tree5d0dfddea221c91545a9bd57ac7face5842291d4 /src/tasks.c
parent147cb7f0e67d1f3c3274effa5476607e24664182 (diff)
downloadavr-ioe-4e1ce86af16307bf7d42657db07600867c7c4bbc.tar.gz
avr-ioe-4e1ce86af16307bf7d42657db07600867c7c4bbc.tar.bz2
avr-ioe-4e1ce86af16307bf7d42657db07600867c7c4bbc.zip
Add some more progress and split non-core functionality to separate repo
More progress to implementation and some changes in project it self. This library will implement only drivers for features on chip but nothing else. Everything connected externally is now in separate repository.
Diffstat (limited to 'src/tasks.c')
-rw-r--r--src/tasks.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/tasks.c b/src/tasks.c
index abc2add..27f8fb4 100644
--- a/src/tasks.c
+++ b/src/tasks.c
@@ -33,15 +33,6 @@ void task_stack_reg(TaskStack * ts, Task * t) {
void task_stack_unreg(TaskStack * ts, Task * t) {
}
-void init_mutex(Mutex * mtx, uint8_t flags) {
-};
-void take_mutex(Mutex * mtx) {
-};
-int8_t take_mutex_t(Mutex * mtx, uint16_t timeout) {
-};
-void give_mutex(Mutex * mtx) {
-};
-
#else /* CONFIG_IOE_TASKS */
int8_t task_delay_till(volatile int8_t * boolean, uint16_t timeout) {