Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Initial structure. Nothing works yet.
[simgrid.git] / src / surf / workstation_private.h
1 /*      $Id$ */
2
3 /* Copyright (c) 2004 Arnaud Legrand. All rights reserved.                  */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef _SURF_WORKSTATION_PRIVATE_H
9 #define _SURF_WORKSTATION_PRIVATE_H
10
11 #include "surf_private.h"
12
13 typedef struct workstation_CLM03 {
14   surf_resource_t resource;     /* Any such object, added in a trace
15                                    should start by this field!!! */
16   char *name;
17   void *cpu;
18   void *network_card;
19 } s_workstation_CLM03_t, *workstation_CLM03_t;
20
21 typedef struct surf_action_parallel_task_CSL05 {
22   s_surf_action_t generic_action;
23   lmm_variable_t variable;
24   double rate;
25   int suspended;
26 } s_surf_action_parallel_task_CSL05_t, *surf_action_parallel_task_CSL05_t;
27
28 #endif                          /* _SURF_WORKSTATION_PRIVATE_H */