Mercurial > cgi-bin > hgwebdir.cgi > VMS > VMS_Implementations > VMS_impls > VMS__MC_shared_impl
view loop.h @ 184:50b29548d4f0
handler interface for counters... not working
| author | Nina Engelhardt <nengel@mailbox.tu-berlin.de> |
|---|---|
| date | Fri, 13 Jan 2012 15:03:32 +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 */
