Mercurial > cgi-bin > hgwebdir.cgi > VMS > VMS_Implementations > VMS_impls > VMS__MC_shared_impl
view dependency.h @ 131:395f58384a5c
dot output
| author | Nina Engelhardt |
|---|---|
| date | Thu, 15 Sep 2011 17:31:33 +0200 |
| parents | ce02441b77cf |
| children |
line source
1 /*
2 * File: dependency.h
3 * Author: engelhardt
4 *
5 * Created on 29. August 2011, 17:41
6 */
8 #ifndef DEPENDENCY_H
9 #define DEPENDENCY_H
11 #include "DynArray/DynArray.h"
12 #include <stdio.h>
16 typedef struct {
17 int from_vp;
18 int from_task;
19 int to_vp;
20 int to_task;
21 } Dependency;
23 FILE* dependency_file;
25 Dependency* new_dependency(int from_vp, int from_task, int to_vp, int to_task);
27 int set_dependency_file(FILE* file);
29 void print_dependency_to_file(void* dep);
31 #endif /* DEPENDENCY_H */
