Mercurial > cgi-bin > hgwebdir.cgi > VMS > VMS_Implementations > VMS_impls > VMS__MC_shared_impl
view loop.h @ 166:aefd87f9d12f
loop graph
| author | Nina Engelhardt |
|---|---|
| date | Tue, 18 Oct 2011 15:53:04 +0200 |
| 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 */
