Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add workstation_private.h
[simgrid.git] / src / surf / workstation_private.h
1 /* Copyright (c) 2009, 2013. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef WS_PRIVATE_H_
8 #define WS_PRIVATE_H_
9 #include "surf_private.h"
10 typedef struct workstation_CLM03 {
11   s_surf_resource_t generic_resource;   /* Must remain first to add this to a trace */
12   void *net_elm;
13   xbt_dynar_t storage;
14 } s_workstation_CLM03_t, *workstation_CLM03_t;
15
16 void __init_ws(workstation_CLM03_t ws,  const char *id, int level);
17
18 #endif /* WS_PRIVATE_H_ */