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