view 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
line source
1 /*
2 * File: loop.h
3 * Author: engelhardt
4 *
5 * Created on 4. Oktober 2011, 15:54
6 */
8 #ifndef LOOP_H
9 #define LOOP_H
11 #include <stdio.h>
13 typedef int* bulb;
15 FILE* loop_file;
17 bulb new_bulb();
19 void set_bulb_member(bulb b, int i, int vp, int task);
21 void set_bulb_core(bulb b, int core);
23 void set_bulb_id(bulb b, int id);
25 void set_loop_file(FILE* file);
27 void print_bulb_to_file(void* b);
29 void print_per_slot_to_file(void* _b);
30 #endif /* LOOP_H */