Просмотр исходного кода

defect 595
There are various bugs with saCkptCheckpointOpenAsync that result in it
crashing the executive, library, or just failing the saftest conformance
suite..

(Logical change 1.200)


git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@651 fd59a12c-fef9-0310-b244-a6a79926bd2f

Steven Dake 20 лет назад
Родитель
Сommit
08f94a5835
1 измененных файлов с 4 добавлено и 1 удалено
  1. 4 1
      include/ipc_ckpt.h

+ 4 - 1
include/ipc_ckpt.h

@@ -102,6 +102,7 @@ struct req_lib_ckpt_checkpointopen {
 	struct req_header header;
 	SaNameT checkpointName;
 	SaCkptCheckpointCreationAttributesT checkpointCreationAttributes;
+	int checkpointCreationAttributesSet;
 	SaCkptCheckpointOpenFlagsT checkpointOpenFlags;
 };
 
@@ -115,6 +116,7 @@ struct req_exec_ckpt_checkpointopen {
 	struct req_lib_ckpt_checkpointopen req_lib_ckpt_checkpointopen;
 	SaCkptCheckpointHandleT checkpointHandle;
 	SaInvocationT invocation;
+	int async_call;
 };
 
 
@@ -122,9 +124,10 @@ struct req_lib_ckpt_checkpointopenasync {
 	struct req_header header;
 	SaNameT checkpointName;
 	SaCkptCheckpointCreationAttributesT checkpointCreationAttributes;
+	int checkpointCreationAttributesSet;
 	SaCkptCheckpointOpenFlagsT checkpointOpenFlags;
-	SaCkptCheckpointHandleT checkpointHandle;
 	SaInvocationT invocation;
+	SaCkptCheckpointHandleT checkpointHandle;
 };
 
 struct res_lib_ckpt_checkpointopenasync {