Move autotune related stuff to autotune.c

This commit is contained in:
jsteube
2016-09-14 20:06:27 +02:00
parent 963cda3db6
commit e94ab8c113
9 changed files with 341 additions and 350 deletions
+14
View File
@@ -6,6 +6,20 @@
#ifndef _DATA_H
#define _DATA_H
#define global_free(attr) \
{ \
myfree ((void *) data.attr); \
\
data.attr = NULL; \
}
#define local_free(attr) \
{ \
myfree ((void *) attr); \
\
attr = NULL; \
}
typedef struct
{
/**