Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9bc850b7caeffcdff549f84badc14836b7205a41
[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_link {
14   surf_resource_t resource;   /* Any such object, added in a trace
15                                  should start by this field!!! */
16                               /* Using this object with the public part of
17                                  resource does not make sense */
18   const char *name;
19   void *cpu;
20   void *network_card;
21 } s_workstation_t, *workstation_t;
22
23 #endif                          /* _SURF_WORKSTATION_PRIVATE_H */