|
From: <kin...@us...> - 2025-08-07 12:36:58
|
Revision: 7267
http://sourceforge.net/p/teem/code/7267
Author: kindlmann
Date: 2025-08-07 12:36:57 +0000 (Thu, 07 Aug 2025)
Log Message:
-----------
still apparently a work in progress
Modified Paths:
--------------
teem/trunk/src/bin/puller.c
Modified: teem/trunk/src/bin/puller.c
===================================================================
--- teem/trunk/src/bin/puller.c 2025-08-07 12:35:17 UTC (rev 7266)
+++ teem/trunk/src/bin/puller.c 2025-08-07 12:36:57 UTC (rev 7267)
@@ -377,6 +377,27 @@
airMopError(mop);
return 1;
}
+ if (pullRun(pctx)) {
+ airMopAdd(mop, err = biffGetDone(PULL), airFree, airMopAlways);
+ fprintf(stderr, "%s: trouble running system:\n%s", me, err);
+ airMopError(mop);
+ return 1;
+ }
+ /* HEY HOW WAS THIS NEVER FINISHED ????
+ if (pullOutputGet(nPosOut, NULL, NULL,
+ NULL, 0, pctx)) {
+ airMopAdd(mop, err = biffGetDone(PULL), airFree, airMopAlways);
+ fprintf(stderr, "%s: trouble getting output:\n%s", me, err);
+ airMopError(mop);
+ return 1;
+ }
+ if (pullFinish(pctx)) {
+ airMopAdd(mop, err = biffGetDone(PULL), airFree, airMopAlways);
+ fprintf(stderr, "%s: trouble finishing system:\n%s", me, err);
+ airMopError(mop);
+ return 1;
+ }
+ */
/* -------------------------------------------------- */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|