Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rewrite the ChangeLog to make it more readable
[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   s_surf_resource_t generic_resource; /* Must remain first to add this to a trace */
15   void *cpu;
16   int id;
17 } s_workstation_CLM03_t, *workstation_CLM03_t;
18
19 typedef struct surf_action_parallel_task_CSL05 {
20   s_surf_action_t generic_action;
21   lmm_variable_t variable;
22   double rate;
23   int suspended;
24 } s_surf_action_parallel_task_CSL05_t, *surf_action_parallel_task_CSL05_t;
25
26 #endif /* _SURF_WORKSTATION_PRIVATE_H */