]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/system/SharedArbiterC.nc
Fix TMI copyright attributions
[tinyos-2.x.git] / tos / system / SharedArbiterC.nc
index 2e61d5cb06c268400e776c13dba0a1d8905e6a6a..cb6d629235597d0062b6d2c3e466897c3e8b1c36 100644 (file)
@@ -10,7 +10,7 @@
  * - Redistributions in binary form must reproduce the above copyright
  *   notice, this list of conditions and the following disclaimer in the
  *   documentation and/or other materials provided with the distribution.
- * - Neither the name of the Technische Universität Berlin nor the names
+ * - Neither the name of the Titanium Mirror, Inc. nor the names
  *   of its contributors may be used to endorse or promote products derived
  *   from this software without specific prior written permission.
  *
@@ -45,14 +45,11 @@ generic configuration SharedArbiterC(char resourceName[]) {
 implementation {
   enum { CLIENTS = uniqueCount(resourceName) };
 
-  components new SharedArbiterP(CLIENTS);
+  components new SharedArbiterP();
   Resource = SharedArbiterP;
   ResourceDefaultOwner = SharedArbiterP;
   ArbiterInfo = SharedArbiterP;
 
-  components MainC;
-  MainC.SoftwareInit -> SharedArbiterP;
-
   components new BitVectorC(CLIENTS) as GrantedVectorC;
   SharedArbiterP.GrantedVector -> GrantedVectorC;