[PVFS2-CVS] commit by bradles in pvfs2/src/io/flow: flow.c flow.h

CVS commit program cvs at parl.clemson.edu
Thu Jul 7 12:35:45 EDT 2005


Update of /projects/cvsroot/pvfs2/src/io/flow
In directory parlweb:/tmp/cvs-serv18292/src/io/flow

Modified Files:
	flow.c flow.h 
Log Message:
Updates for standardized spelling in pint-request.h and new distribution
function signatures.


Index: flow.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/io/flow/flow.c,v
diff -p -u -r1.45 -r1.46
--- flow.c	9 Feb 2005 21:46:59 -0000	1.45
+++ flow.c	7 Jul 2005 15:35:45 -0000	1.46
@@ -380,7 +380,7 @@ int PINT_flow_post(flow_descriptor * flo
     }
 
     /* setup the request processing states */
-    flow_d->file_req_state = PINT_New_request_state(flow_d->file_req);
+    flow_d->file_req_state = PINT_new_request_state(flow_d->file_req);
     if (!flow_d->file_req_state)
     {
 	gen_mutex_unlock(&interface_mutex);
@@ -390,7 +390,7 @@ int PINT_flow_post(flow_descriptor * flo
     /* only setup a memory datatype state if caller provided a memory datatype */
     if(flow_d->mem_req)
     {
-	flow_d->mem_req_state = PINT_New_request_state(flow_d->mem_req);
+	flow_d->mem_req_state = PINT_new_request_state(flow_d->mem_req);
 	if (!flow_d->mem_req_state)
 	{
 	    gen_mutex_unlock(&interface_mutex);
@@ -516,12 +516,12 @@ static void flow_release(flow_descriptor
     /* let go of the request processing states */
     if (flow_d->file_req_state)
     {
-	PINT_Free_request_state(flow_d->file_req_state);
+	PINT_free_request_state(flow_d->file_req_state);
     }
 
     if (flow_d->mem_req_state)
     {
-	PINT_Free_request_state(flow_d->mem_req_state);
+	PINT_free_request_state(flow_d->mem_req_state);
     }
 }
 

Index: flow.h
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/io/flow/flow.h,v
diff -p -u -r1.32 -r1.33
--- flow.h	12 Aug 2004 19:53:39 -0000	1.32
+++ flow.h	7 Jul 2005 15:35:45 -0000	1.33
@@ -118,7 +118,7 @@ struct flow_descriptor
     PVFS_size aggregate_size;
 
     /* information about the datafile that this flow will access */
-    PINT_Request_file_data file_data;
+    PINT_request_file_data file_data;
 
 	/***********************************************************/
     /* fields that can be read publicly upon completion */



More information about the PVFS2-CVS mailing list