ossp-pkg/sio/sio.c 1.8 -> 1.9
--- sio.c 2002/11/05 16:53:55 1.8
+++ sio.c 2002/11/08 10:34:24 1.9
@@ -133,6 +133,8 @@
h = PREV(h,hd);
else if (rc == SIO_XSTREAM)
h = h->cross;
+ else if (rc == SIO_LOOP)
+ h = h;
else
break;
}
@@ -609,6 +611,7 @@
case SIO_UPSTREAM: mess = "Invoke Upstream Stage"; break;
case SIO_DOWNSTREAM: mess = "Invoke Downstream Stage"; break;
case SIO_XSTREAM: mess = "Invoke Crossstream Stage"; break;
+ case SIO_LOOP: mess = "Loop through current Stage"; break;
default: mess = "Invalid Result Code"; break;
}
|
|