• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

CNestedDataFile/H03-May-2022-5,3383,673

missing/H29-Dec-2013-331276

AThread.cppH A D03-May-202220.3 KiB795540

AThread.hH A D10-Feb-201312.3 KiB346118

CAtomicCounter.hH A D03-May-20223.1 KiB11978

CConditionVariable.cppH A D10-Feb-20135.9 KiB213126

CConditionVariable.hH A D10-Feb-20134 KiB15839

CMutex.cppH A D11-Feb-201312.8 KiB412252

CMutex.hH A D11-Feb-20137 KiB24482

CPath.hH A D28-Feb-20107.2 KiB325196

CRWMutex.cppH A D10-Feb-20138.1 KiB337215

CRWMutex.hH A D10-Feb-20135.7 KiB22376

Makefile.amH A D27-Dec-20131.5 KiB6130

Makefile.inH A D03-May-202223.3 KiB770674

READMEH A D22-Sep-20081 KiB2617

ScopedAutoReleasePool.hH A D10-Feb-20131.4 KiB4823

TAutoBuffer.hH A D10-Feb-20133.6 KiB175100

TMemoryPipe.cppH A D29-Mar-20138.6 KiB397278

TMemoryPipe.hH A D03-May-20223.1 KiB10844

TTempVarSetter.hH A D22-Sep-2008411 2419

auto_array.hH A D10-Feb-2013799 5620

clocks.cppH A D03-May-20228 KiB402302

clocks.hH A D10-Feb-20133.6 KiB11240

endian_util.hH A D29-Aug-20098.7 KiB239113

istringH A D12-Jul-20097.8 KiB155124

README

1This directory contains miscellaneous files of convenient functionality or
2pieces of other libraries which haven't been incorporated in the main release
3yet
4
5And, the missing directory contains source files which have been known to be
6missing from particular distributions or platforms.  This is where code is
7placed for either a workaround or substitution for what didn't exist on a
8particular distribution or platform.
9
10- istring is a C++ class derived from std::string, the STL string class, and
11  provides some functionality missing in the STL implementation which may be
12  possible with other parts of the STL but is rather cumbersome or verbose.
13
14- CPath is used to perform various operations on pathnames (i.e. does exist?,
15  touch, size of file).
16
17- TAutoBuffer is used to allocate buffer of memory that will be freed when
18  the object goes out of scope.
19
20- AThread is a posix (pthread) thread wrapper class
21
22- CMutex is a posix (pthread) mutex wrapper class
23
24- CRWLock is a posix (pthread) rwlock wrapper class
25
26