Changeset 2393 in Sophya for trunk/ArchTOIPipe/Kernel/ringprocessor.cc
- Timestamp:
- May 28, 2003, 11:03:53 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/Kernel/ringprocessor.cc
r2386 r2393 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: ringprocessor.cc,v 1. 2 2003-05-20 10:10:09aubourg Exp $5 // $Id: ringprocessor.cc,v 1.3 2003-05-28 21:03:52 aubourg Exp $ 6 6 7 7 #include "ringprocessor.h" … … 9 9 #include "toimanager.h" 10 10 11 #include <iostream >11 #include <iostream.h> 12 12 #include <typeinfo> // ajout pour linux 13 13 #ifdef HAVE_VALUES_H … … 55 55 void RingProcessor::afterinit() { 56 56 inRings = new (RingPipe*[inRingIx.size()]); 57 for (int i=0; i<inRingIx.size(); i++)58 inRings[i] = NULL; 57 {for (int i=0; i<inRingIx.size(); i++) 58 inRings[i] = NULL;} 59 59 outRings = new (RingPipe*[outRingIx.size()]); 60 for (int i=0; i<outRingIx.size(); i++)61 outRings[i] = NULL; 60 {for (int i=0; i<outRingIx.size(); i++) 61 outRings[i] = NULL;} 62 62 } 63 63
Note:
See TracChangeset
for help on using the changeset viewer.