fix more submission errors
---
 src/ais/include/saCkpt.h | 70 ++++++++++++++++++++++++------------------------
 1 file changed, 35 insertions(+), 35 deletions(-)

diff --git a/src/ais/include/saCkpt.h b/src/ais/include/saCkpt.h
index 5c4b20c..7a94219 100644
--- a/src/ais/include/saCkpt.h
+++ b/src/ais/include/saCkpt.h
@@ -3,19 +3,19 @@
 ** FILE:
 **   saCkpt.h
 **
-** DESCRIPTION: 
-**   This file provides the C language binding for the Service 
-**   Availability(TM) Forum AIS Checkpoint Service (CKPT). It contains all of 
-**   the prototypes and type definitions required for CKPT. 
-**   
+** DESCRIPTION:
+**   This file provides the C language binding for the Service
+**   Availability(TM) Forum AIS Checkpoint Service (CKPT). It contains all of
+**   the prototypes and type definitions required for CKPT.
+**
 ** SPECIFICATION VERSION:
 **   SAI-AIS-CKPT-B.02.02
 **
-** DATE: 
+** DATE:
 **   Thu Jul 16 2009
 **
 ** LEGAL:
-**   OWNERSHIP OF SPECIFICATION AND COPYRIGHTS. 
+**   OWNERSHIP OF SPECIFICATION AND COPYRIGHTS.
 **
 ** Copyright(c) 2009, Service Availability(TM) Forum. All rights reserved.
 **
@@ -119,13 +119,13 @@ typedef struct {
     SaSizeT                             memoryUsed;
 } SaCkptCheckpointDescriptorT;
 
-typedef void 
+typedef void
 (*SaCkptCheckpointOpenCallbackT)(
     SaInvocationT invocation,
     SaCkptCheckpointHandleT checkpointHandle,
     SaAisErrorT error);
 
-typedef void 
+typedef void
 (*SaCkptCheckpointSynchronizeCallbackT)(
     SaInvocationT invocation,
     SaAisErrorT error);
@@ -135,12 +135,12 @@ typedef struct {
     SaCkptCheckpointSynchronizeCallbackT saCkptCheckpointSynchronizeCallback;
 } SaCkptCallbacksT;
 
-typedef enum {      
+typedef enum {
     SA_CKPT_SECTION_RESOURCES_EXHAUSTED = 1,
     SA_CKPT_SECTION_RESOURCES_AVAILABLE = 2
 } SaCkptCheckpointStatusT;
 
-typedef enum {      
+typedef enum {
     SA_CKPT_CHECKPOINT_STATUS = 1
 } SaCkptStateT;
 
@@ -148,23 +148,23 @@ typedef enum {
 /*************************************************/
 /******** CKPT API function declarations *********/
 /*************************************************/
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptInitialize(
-    SaCkptHandleT *ckptHandle, 
+    SaCkptHandleT *ckptHandle,
     const SaCkptCallbacksT *callbacks,
     SaVersionT *version);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptSelectionObjectGet(
     SaCkptHandleT ckptHandle,
     SaSelectionObjectT *selectionObject);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptDispatch(
-    SaCkptHandleT ckptHandle, 
+    SaCkptHandleT ckptHandle,
     SaDispatchFlagsT dispatchFlags);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptFinalize(
     SaCkptHandleT ckptHandle);
 
@@ -177,7 +177,7 @@ saCkptCheckpointOpen(
     SaTimeT timeout,
     SaCkptCheckpointHandleT *checkpointHandle);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptCheckpointOpenAsync(
     SaCkptHandleT ckptHandle,
     SaInvocationT invocation,
@@ -189,33 +189,33 @@ extern SaAisErrorT
 saCkptCheckpointClose(
     SaCkptCheckpointHandleT checkpointHandle);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptCheckpointUnlink(
-    SaCkptHandleT ckptHandle, 
+    SaCkptHandleT ckptHandle,
     const SaNameT *checkpointName);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptCheckpointRetentionDurationSet(
     SaCkptCheckpointHandleT checkpointHandle,
     SaTimeT retentionDuration);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptActiveReplicaSet(
     SaCkptCheckpointHandleT checkpointHandle);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptCheckpointStatusGet(
     SaCkptCheckpointHandleT checkpointHandle,
     SaCkptCheckpointDescriptorT *checkpointStatus);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptSectionCreate(
     SaCkptCheckpointHandleT checkpointHandle,
     SaCkptSectionCreationAttributesT *sectionCreationAttributes,
     const void *initialData,
     SaSizeT initialDataSize);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptSectionDelete(
     SaCkptCheckpointHandleT checkpointHandle,
     const SaCkptSectionIdT *sectionId);
@@ -225,60 +225,60 @@ saCkptSectionIdFree(
     SaCkptCheckpointHandleT checkpointHandle,
     SaUint8T *id);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptSectionExpirationTimeSet(
     SaCkptCheckpointHandleT checkpointHandle,
     const SaCkptSectionIdT* sectionId,
     SaTimeT expirationTime);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptSectionIterationInitialize(
     SaCkptCheckpointHandleT checkpointHandle,
     SaCkptSectionsChosenT sectionsChosen,
     SaTimeT expirationTime,
     SaCkptSectionIterationHandleT *sectionIterationHandle);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptSectionIterationNext(
     SaCkptSectionIterationHandleT sectionIterationHandle,
     SaCkptSectionDescriptorT *sectionDescriptor);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptSectionIterationFinalize(
     SaCkptSectionIterationHandleT sectionIterationHandle);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptCheckpointWrite(
     SaCkptCheckpointHandleT checkpointHandle,
     const SaCkptIOVectorElementT *ioVector,
     SaUint32T numberOfElements,
     SaUint32T *erroneousVectorIndex);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptSectionOverwrite(
     SaCkptCheckpointHandleT checkpointHandle,
     const SaCkptSectionIdT *sectionId,
     const void *dataBuffer,
     SaSizeT dataSize);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptCheckpointRead(
     SaCkptCheckpointHandleT checkpointHandle,
     SaCkptIOVectorElementT *ioVector,
     SaUint32T numberOfElements,
     SaUint32T *erroneousVectorIndex);
 
-extern SaAisErrorT      
+extern SaAisErrorT
 saCkptIOVectorElementDataFree(
     SaCkptCheckpointHandleT checkpointHandle,
     void *data);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptCheckpointSynchronize(
     SaCkptCheckpointHandleT checkpointHandle,
     SaTimeT timeout);
 
-extern SaAisErrorT 
+extern SaAisErrorT
 saCkptCheckpointSynchronizeAsync(
     SaCkptCheckpointHandleT checkpointHandle,
     SaInvocationT invocation);
-- 
2.9.5


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Opensaf-devel mailing list
Opensaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/opensaf-devel

Reply via email to