From: mquinson Date: Thu, 2 Jul 2009 07:59:44 +0000 (+0000) Subject: Actually implement surf_resource_properties so that it links (sorry) X-Git-Tag: SVN~1203 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/f895d21e7462c1d40d1fe7162c8dfaa37405cefd?hp=8a34c13fc69ef21965703fc99a3a704b7cf9b8f3 Actually implement surf_resource_properties so that it links (sorry) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6438 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/surf/surf_resource.c b/src/surf/surf_resource.c index 4c2e821411..aa36741a8e 100644 --- a/src/surf/surf_resource.c +++ b/src/surf/surf_resource.c @@ -20,3 +20,6 @@ const char *surf_resource_name(const void *resource) { return ((surf_resource_t)resource)->name; } +xbt_dict_t surf_resource_properties(const void *resource) { + return ((surf_resource_t)resource)->properties; +}