Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix TestSuite.msg-file
[simgrid.git] / src / surf / storage_private.h
index f27d650..e41cde0 100644 (file)
@@ -45,7 +45,7 @@ typedef struct storage {
 } s_storage_t, *storage_t;
 
 typedef enum {
-  READ=0, WRITE, STAT, OPEN, CLOSE
+  READ=0, WRITE, STAT, OPEN, CLOSE, UNLINK, LS
 } e_surf_action_storage_type_t;
 
 typedef struct surf_action_storage {
@@ -54,4 +54,6 @@ typedef struct surf_action_storage {
   void *storage;
 } s_surf_action_storage_t, *surf_action_storage_t;
 
+static int storage_action_unref(surf_action_t action);
+
 #endif /* STORAGE_PRIVATE_H_ */