X-Git-Url: https://oss.titaniummirror.com/gitweb/?p=tinyos-2.x.git;a=blobdiff_plain;f=tos%2Flib%2Ftosthreads%2Flib%2Fnet%2FBlockingCollectionControlC.nc;h=4a775542d70e067c5e9bd0c4bb139e16a21fb9c2;hp=e7b2182260dc26d879d8e06400ed53aeb809fb7a;hb=e9bfab607e051bae6afb47b44892ce37541d1b44;hpb=adf1de6c009d13b7b52e68535c63b28f59c97400 diff --git a/tos/lib/tosthreads/lib/net/BlockingCollectionControlC.nc b/tos/lib/tosthreads/lib/net/BlockingCollectionControlC.nc index e7b21822..4a775542 100644 --- a/tos/lib/tosthreads/lib/net/BlockingCollectionControlC.nc +++ b/tos/lib/tosthreads/lib/net/BlockingCollectionControlC.nc @@ -32,11 +32,15 @@ configuration BlockingCollectionControlC { } implementation { - components BlockingCollectionControlP, - CollectionC as Collector; + components CollectionC as Collector, + SystemCallC, + MutexC, + BlockingCollectionControlP; RoutingControl = BlockingCollectionControlP.BlockingStdControl; RootControl = Collector; BlockingCollectionControlP.RoutingControl -> Collector.StdControl; + BlockingCollectionControlP.SystemCall -> SystemCallC; + BlockingCollectionControlP.Mutex -> MutexC; }