avr-fw-modules/core/src/fdev_notify.c

14 lines
161 B
C
Raw Permalink Normal View History

2017-09-27 13:25:39 +02:00
#include <stdio.h>
#include <sys/atomic.h>
int fdev_notify(FILE* f,thread_t* notify){
if (f){
ATOMIC
f->notify = notify;
return 0;
}
return -1;
};