laforge
/
openbts-osmo
Archived
1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
Alexander Chemeris 57d292d962
Better documentation and error reporting for ThreadSemaphore.
12 years ago
..
BitVector.cpp common libs: Implemented BitVector::unhex() which reads a hex string into a BitVector. 13 years ago
BitVector.h common libs: Implemented BitVector::unhex() which reads a hex string into a BitVector. 13 years ago
BitVectorTest.cpp Another fix to the copyright notice header. 13 years ago
Configuration.cpp Another fix to the copyright notice header. 13 years ago
Configuration.h Move more code out of asserts. 13 years ago
ConfigurationTest.cpp Another fix to the copyright notice header. 13 years ago
F16.h Another fix to the copyright notice header. 13 years ago
F16Test.cpp Another fix to the copyright notice header. 13 years ago
Interthread.h Another fix to the copyright notice header. 13 years ago
InterthreadTest.cpp Another fix to the copyright notice header. 13 years ago
LinkedLists.cpp Another fix to the copyright notice header. 13 years ago
LinkedLists.h Another fix to the copyright notice header. 13 years ago
LogTest.cpp Another fix to the copyright notice header. 13 years ago
Logger.cpp common libs: Lower log level for "setting log path to " message. 13 years ago
Logger.h common libs: Implemented ISLOGGING() macro to test whether given loglevel is going to be logged. 13 years ago
Makefile.am Another fix to the copyright notice header. 13 years ago
README.common Initial import of OpenBTS 2.6 for a new public trunk. 13 years ago
Regexp.h Another fix to the copyright notice header. 13 years ago
RegexpTest.cpp Another fix to the copyright notice header. 13 years ago
Sockets.cpp common libs: Use gethostbyname2_r() instead of gethostbyname() if available. 13 years ago
Sockets.h Another fix to the copyright notice header. 13 years ago
SocketsTest.cpp Another fix to the copyright notice header. 13 years ago
Threads.cpp Better documentation and error reporting for ThreadSemaphore. 12 years ago
Threads.h Better documentation and error reporting for ThreadSemaphore. 12 years ago
Timeval.cpp Fix a bug with Timeval difference calculation on 64-bit Linux. 13 years ago
Timeval.h Another fix to the copyright notice header. 13 years ago
TimevalTest.cpp Another fix to the copyright notice header. 13 years ago
Vector.h Another fix to the copyright notice header. 13 years ago
VectorTest.cpp Another fix to the copyright notice header. 13 years ago
example.config Initial import of OpenBTS 2.6 for a new public trunk. 13 years ago

README.common

This directory contains common-use classes, most of which are not specific to GSM.

Vector		A vector class (NOT std::vector<>) that supports
		aliased subvectors.  Not resizable.
BitVector	Bit-indexable vectors based on Vector.
Interthread	A set of C++ wrappers for pthread facilities.
Sockets		A set of C++ wrappers for Unix sockets.
Timeval		A C++ wraper for struct timeval.
LinkLists	Classes for simple linked lists of pointers.

Do "make tests" to build a series of unit tests for these classes.