Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move things to a righter place
authorsuter <frederic.suter@cc.in2p3.fr>
Wed, 25 Sep 2013 16:20:56 +0000 (18:20 +0200)
committersuter <frederic.suter@cc.in2p3.fr>
Wed, 25 Sep 2013 16:20:56 +0000 (18:20 +0200)
src/simix/smx_io_private.h
src/simix/smx_private.h

index 8a9dcc3..8bad641 100644 (file)
 #include "simgrid/simix.h"
 #include "smx_smurf_private.h"
 
+/** @brief Storage datatype */
+typedef struct s_smx_storage_priv {
+  void *data;              /**< @brief user data */
+} s_smx_storage_priv_t;
+
+
 static inline smx_storage_priv_t SIMIX_storage_priv(smx_storage_t storage){
   return xbt_lib_get_level(storage, SIMIX_STORAGE_LEVEL);
 }
index b0845e6..b591a57 100644 (file)
@@ -76,11 +76,6 @@ typedef struct s_smx_file {
   void* data;                   /**< @brief user data */
 } s_smx_file_t;
 
-/* ******************************** Storage ************************************/
-typedef struct s_smx_storage_priv {
-  void *data;              /**< @brief user data */
-} s_smx_storage_priv_t;
-
 /*********************************** Time ************************************/
 
 /** @brief Timer datatype */