|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
digitalmars.D.dtl - MinTL 2
I've finally finished cleaning up MinTL for dmd-102. Since this version is a good cutting point I'm calling it MinTL 2.0 new stuff: - deque - circular linked lists (double and single): CList and CSList - more concurrent containers: ConcurrentQueue, ConcurrentStack, DualQueue, DualStack, LinkedQueue, ConcurrentPriorityQueue, ConcurrentAA - added Exchanger and better doc to Locks library more use of mixins for code reuse. Also replaced assembly files in Locks with inline assembly. http://home.comcast.net/~benhinkle/mintl/ I still get wierd linking errors (eg - sometimes I get typeinfos not found on win32) and/or seg-v's depending on various compiler flags (eg - if I specify -O then I need to insert some printfs in various places to prevent a seg-v presumably because of an optimization bug) but it seems to basically work. have fun! -Ben Oct 03 2004
I still get wierd linking errors (eg - sometimes I get typeinfos not found on win32) and/or seg-v's depending on various compiler flags (eg - if I specify -O then I need to insert some printfs in various places to prevent a seg-v presumably because of an optimization bug) but it seems to basically work. Oct 04 2004
|