From: alebre Date: Thu, 14 Feb 2013 12:53:00 +0000 (+0100) Subject: Add workstation_private.h X-Git-Tag: v3_11_beta~297^2^2~94^2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/9eaf77c4305fb0df4c27047664e083375cdd5d49?hp=9af94d17fed5867d5404fe78930676de085ea3dd Add workstation_private.h --- diff --git a/src/surf/workstation_private.h b/src/surf/workstation_private.h new file mode 100644 index 0000000000..75043cae72 --- /dev/null +++ b/src/surf/workstation_private.h @@ -0,0 +1,18 @@ +/* Copyright (c) 2009, 2013. The SimGrid Team. + * All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ + +#ifndef WS_PRIVATE_H_ +#define WS_PRIVATE_H_ +#include "surf_private.h" +typedef struct workstation_CLM03 { + s_surf_resource_t generic_resource; /* Must remain first to add this to a trace */ + void *net_elm; + xbt_dynar_t storage; +} s_workstation_CLM03_t, *workstation_CLM03_t; + +void __init_ws(workstation_CLM03_t ws, const char *id, int level); + +#endif /* WS_PRIVATE_H_ */