Mercurial > cgi-bin > hgwebdir.cgi > VMS > VMS_Implementations > VMS_impls > VMS__MC_shared_impl
comparison dependency.h @ 129:ce02441b77cf
dependency tracking
| author | Nina Engelhardt |
|---|---|
| date | Mon, 29 Aug 2011 19:12:06 +0200 |
| parents | |
| children | 5475f90c248a |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:cd6413932cc5 |
|---|---|
| 1 /* | |
| 2 * File: dependency.h | |
| 3 * Author: engelhardt | |
| 4 * | |
| 5 * Created on 29. August 2011, 17:41 | |
| 6 */ | |
| 7 | |
| 8 #ifndef DEPENDENCY_H | |
| 9 #define DEPENDENCY_H | |
| 10 | |
| 11 #include "DynArray/DynArray.h" | |
| 12 #include <stdio.h> | |
| 13 | |
| 14 | |
| 15 | |
| 16 typedef struct { | |
| 17 int from_vp; | |
| 18 int from_task; | |
| 19 int to_vp; | |
| 20 int to_task; | |
| 21 } Dependency; | |
| 22 | |
| 23 FILE* dependency_file; | |
| 24 | |
| 25 Dependency* new_dependency(int from_vp, int from_task, int to_vp, int to_task); | |
| 26 | |
| 27 int set_dependency_file(FILE* file); | |
| 28 | |
| 29 void print_dependency_to_file(Dependency* dep); | |
| 30 | |
| 31 #endif /* DEPENDENCY_H */ | |
| 32 |
