added prototype of edg_wll_TransNeedRetry()
authorMiloš Mulač <mulac@civ.zcu.cz>
Wed, 6 Feb 2008 15:05:52 +0000 (15:05 +0000)
committerMiloš Mulač <mulac@civ.zcu.cz>
Wed, 6 Feb 2008 15:05:52 +0000 (15:05 +0000)
- needs implementation

org.glite.lb.server/src/db_supp.c
org.glite.lb.server/src/db_supp.h

index 9c526c6..def3549 100644 (file)
@@ -78,3 +78,9 @@ int edg_wll_Rollback(edg_wll_Context ctx) {
        if ((retval = glite_lbu_Rollback(ctx->dbctx)) != 0) edg_wll_SetErrorDB(ctx);
        return retval;
 }
+
+int edg_wll_TransNeedRetry(edg_wll_Context ctx) {
+       // XXX: needs flesh
+}
+
+
index f53b817..2abf777 100644 (file)
@@ -22,5 +22,6 @@ int edg_wll_bufferedInsertClose(edg_wll_Context ctx, glite_lbu_bufInsert bi);
 int edg_wll_Transaction(edg_wll_Context ctx);
 int edg_wll_Commit(edg_wll_Context ctx);
 int edg_wll_Rollback(edg_wll_Context ctx);
+int edg_wll_TransNeedRetry(edg_wll_Context ctx);
 
 #endif