You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(80) |
Aug
(36) |
Sep
(120) |
Oct
(89) |
Nov
(57) |
Dec
(22) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(308) |
Feb
(66) |
Mar
(88) |
Apr
(54) |
May
(43) |
Jun
(40) |
Jul
(33) |
Aug
(1) |
Sep
(7) |
Oct
(65) |
Nov
(19) |
Dec
(10) |
2007 |
Jan
(5) |
Feb
(8) |
Mar
(7) |
Apr
|
May
(7) |
Jun
|
Jul
(5) |
Aug
(3) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
(5) |
Apr
|
May
(5) |
Jun
(21) |
Jul
(27) |
Aug
(6) |
Sep
|
Oct
(1) |
Nov
(5) |
Dec
(10) |
2009 |
Jan
(67) |
Feb
(3) |
Mar
(26) |
Apr
(2) |
May
|
Jun
(1) |
Jul
|
Aug
(2) |
Sep
(10) |
Oct
(18) |
Nov
(20) |
Dec
(3) |
2010 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(9) |
Oct
(3) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(7) |
Jul
|
Aug
|
Sep
(39) |
Oct
(43) |
Nov
(7) |
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(7) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Richard S. <ric...@us...> - 2005-07-20 00:34:24
|
Update of /cvsroot/loki-lib/loki/MSVC/1300 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4469/MSVC/1300 Modified Files: SmallObj.cpp Log Message: Fixed overflow bug in calculating number of blocks per Chunk. Index: SmallObj.cpp =================================================================== RCS file: /cvsroot/loki-lib/loki/MSVC/1300/SmallObj.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- SmallObj.cpp 18 Jul 2005 11:39:38 -0000 1.8 +++ SmallObj.cpp 20 Jul 2005 00:34:15 -0000 1.9 @@ -13,7 +13,7 @@ // without express or implied warranty. //////////////////////////////////////////////////////////////////////////////// -// Last update: July 18, 2005 +// $Header$ #include "SmallObj.h" @@ -245,7 +245,7 @@ std::size_t numBlocks = pageSize / blockSize; if (numBlocks > UCHAR_MAX) numBlocks = UCHAR_MAX; - else if (numBlocks == 0) numBlocks = 8 * blockSize; + else if ( numBlocks < 8 ) numBlocks = 8; numBlocks_ = static_cast<unsigned char>(numBlocks); assert(numBlocks_ == numBlocks); @@ -591,6 +591,8 @@ assert( found ); } +}; // end namespace Loki + //////////////////////////////////////////////////////////////////////////////// // Change log: // March 20: fix exception safety issue in FixedAllocator::Allocate @@ -601,5 +603,7 @@ // Jun 22, 2005: Fix in FixedAllocator::Allocate by Chad Lehman //////////////////////////////////////////////////////////////////////////////// -}; // end namespace Loki - +// $Log$ +// Revision 1.9 2005/07/20 00:34:15 rich_sposato +// Fixed overflow bug in calculating number of blocks per Chunk. +// |
From: Peter K. <syn...@us...> - 2005-07-19 20:00:52
|
Update of /cvsroot/loki-lib/CVSROOT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2566 Modified Files: modules Log Message: exlude empty directories Index: modules =================================================================== RCS file: /cvsroot/loki-lib/CVSROOT/modules,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- modules 19 Jul 2005 19:41:59 -0000 1.3 +++ modules 19 Jul 2005 20:00:43 -0000 1.4 @@ -24,4 +24,10 @@ # character to interpose another module into the current module. This # can be useful for creating a module that consists of many directories # spread out over the entire source repository. -loki-lib -a !loki/tools/RegressionTest2 loki +# +# exclude/prune empty directories: +# checkout loki-lib instead of loki +# or use "checkout -P loki" +loki-lib -a !loki/tools/RegressionTest2 \ + !loki/tools/RegressionTest/AllTest \ + loki |
From: Peter K. <syn...@us...> - 2005-07-19 19:42:22
|
Update of /cvsroot/loki-lib/CVSROOT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28954 Modified Files: modules Log Message: exlude empty directory Index: modules =================================================================== RCS file: /cvsroot/loki-lib/CVSROOT/modules,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- modules 19 Jul 2005 19:36:40 -0000 1.2 +++ modules 19 Jul 2005 19:41:59 -0000 1.3 @@ -24,4 +24,4 @@ # character to interpose another module into the current module. This # can be useful for creating a module that consists of many directories # spread out over the entire source repository. -loki-lib -a !loki/loki/tools/RegressionTest2 loki +loki-lib -a !loki/tools/RegressionTest2 loki |
From: Peter K. <syn...@us...> - 2005-07-19 19:36:52
|
Update of /cvsroot/loki-lib/CVSROOT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27741 Modified Files: modules Log Message: exlude empty directory Index: modules =================================================================== RCS file: /cvsroot/loki-lib/CVSROOT/modules,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- modules 18 Jun 2001 13:10:48 -0000 1.1 +++ modules 19 Jul 2005 19:36:40 -0000 1.2 @@ -24,3 +24,4 @@ # character to interpose another module into the current module. This # can be useful for creating a module that consists of many directories # spread out over the entire source repository. +loki-lib -a !loki/loki/tools/RegressionTest2 loki |
From: Peter K. <syn...@us...> - 2005-07-18 11:39:48
|
Update of /cvsroot/loki-lib/loki/MSVC/1300 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11286 Modified Files: SmallObj.cpp Log Message: change last update date Index: SmallObj.cpp =================================================================== RCS file: /cvsroot/loki-lib/loki/MSVC/1300/SmallObj.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- SmallObj.cpp 18 Jul 2005 07:17:29 -0000 1.7 +++ SmallObj.cpp 18 Jul 2005 11:39:38 -0000 1.8 @@ -13,7 +13,7 @@ // without express or implied warranty. //////////////////////////////////////////////////////////////////////////////// -// Last update: Jun 22, 2005 +// Last update: July 18, 2005 #include "SmallObj.h" |