Move thread_monitor() to monitor.c

This commit is contained in:
jsteube
2016-09-15 04:29:22 +02:00
parent 1ce58f51d1
commit dcdd0d89cd
6 changed files with 935 additions and 357 deletions
+12
View File
@@ -0,0 +1,12 @@
/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef _DISPATCH_H
#define _DISPATCH_H
void *thread_calc_stdin (void *p);
void *thread_calc (void *p);
#endif // _DISPATCH_H
+11
View File
@@ -0,0 +1,11 @@
/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef _MONITOR_H
#define _MONITOR_H
void *thread_monitor (void *p);
#endif // _MONITOR_H