comparison loop.h @ 195:d83f59e6e2db

eliminate spurious head
author Nina Engelhardt <nengel@mailbox.tu-berlin.de>
date Thu, 09 Feb 2012 17:54:54 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f07900fbcd58
1 /*
2 * File: loop.h
3 * Author: engelhardt
4 *
5 * Created on 4. Oktober 2011, 15:54
6 */
7
8 #ifndef LOOP_H
9 #define LOOP_H
10
11 #include <stdio.h>
12
13 typedef int* bulb;
14
15 FILE* loop_file;
16
17 bulb new_bulb();
18
19 void set_bulb_member(bulb b, int i, int vp, int task);
20
21 void set_bulb_core(bulb b, int core);
22
23 void set_bulb_id(bulb b, int id);
24
25 void set_loop_file(FILE* file);
26
27 void print_bulb_to_file(void* b);
28
29 void print_per_slot_to_file(void* _b);
30 #endif /* LOOP_H */
31