1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-05-21 14:16:22 +02:00
cdf2018-principal/chef/src/debug.h

17 lines
218 B
C

#ifndef __DEBUG_H_
#define __DEBUG_H_
#include <pthread.h>
#include <time.h>
clock_t debugStart;
int debugFd;
pthread_t tDebug;
void* TaskDebug(void *pdata);
void configureDebug();
void deconfigureDebug();
#endif