├── .travis.yml ├── CMakeLists.txt ├── COPYRIGHT ├── FindAtomics.cmake ├── LICENSE ├── Makefile ├── README.md ├── cmake_uninstall.cmake.in ├── concourse ├── build_and_test.py ├── build_centos5_debug.yml ├── build_centos5_release.yml ├── build_centos6_debug.yml ├── build_centos6_release.yml ├── build_debian8_debug.yml ├── build_debian8_debug_clang.yml ├── build_debian8_debug_clang_libcxx.yml ├── build_debian8_release.yml ├── build_debian8_release_clang.yml ├── build_debian8_release_clang_libcxx.yml ├── build_osx32_debug.yml ├── build_osx32_release.yml ├── package_tarball.bash ├── package_tarball_centos5_debug.yml ├── package_tarball_centos5_release.yml ├── package_tarball_centos6_release.yml ├── package_tarball_debian8_debug.yml ├── package_tarball_debian8_debug_clang.yml ├── package_tarball_debian8_debug_clang_libcxx.yml ├── package_tarball_debian8_release.yml ├── package_tarball_debian8_release_clang.yml ├── package_tarball_debian8_release_clang_libcxx.yml ├── package_tarball_osx32_debug.yml ├── package_tarball_osx32_release.yml ├── publish_tag.bash └── publish_tag.yml ├── i386.toolchain.cmake ├── libgpos ├── Makefile ├── include │ └── gpos │ │ ├── _api.h │ │ ├── assert.h │ │ ├── base.h │ │ ├── common │ │ ├── CAutoP.h │ │ ├── CAutoRef.h │ │ ├── CAutoRg.h │ │ ├── CAutoTimer.h │ │ ├── CBitSet.h │ │ ├── CBitSetIter.h │ │ ├── CBitVector.h │ │ ├── CDouble.h │ │ ├── CDouble.inl │ │ ├── CDynamicPtrArray.h │ │ ├── CDynamicPtrArray.inl │ │ ├── CDynamicPtrArrayUtils.h │ │ ├── CDynamicPtrArrayUtils.inl │ │ ├── CEnumSet.h │ │ ├── CEnumSetIter.h │ │ ├── CHashMap.h │ │ ├── CHashMap.inl │ │ ├── CHashMapIter.h │ │ ├── CHashMapIter.inl │ │ ├── CHashSet.h │ │ ├── CHashSet.inl │ │ ├── CHeapObject.h │ │ ├── CList.h │ │ ├── CList.inl │ │ ├── CMainArgs.h │ │ ├── CRandom.h │ │ ├── CRefCount.h │ │ ├── CStack.h │ │ ├── CStack.inl │ │ ├── CStackDescriptor.h │ │ ├── CStackObject.h │ │ ├── CSyncHashtable.h │ │ ├── CSyncHashtable.inl │ │ ├── CSyncHashtableAccessByIter.h │ │ ├── CSyncHashtableAccessByIter.inl │ │ ├── CSyncHashtableAccessByKey.h │ │ ├── CSyncHashtableAccessByKey.inl │ │ ├── CSyncHashtableAccessorBase.h │ │ ├── CSyncHashtableAccessorBase.inl │ │ ├── CSyncHashtableIter.h │ │ ├── CSyncHashtableIter.inl │ │ ├── CSyncList.h │ │ ├── CSyncList.inl │ │ ├── CSyncPool.h │ │ ├── CSyncPool.inl │ │ ├── CTimerUser.h │ │ ├── CWallClock.h │ │ ├── ITimer.h │ │ ├── clibtypes.h │ │ ├── clibwrapper.h │ │ ├── pthreadtypes.h │ │ ├── pthreadwrapper.h │ │ └── syslibwrapper.h │ │ ├── error │ │ ├── CAutoExceptionStack.h │ │ ├── CAutoLogger.h │ │ ├── CAutoTrace.h │ │ ├── CErrorContext.h │ │ ├── CErrorHandler.h │ │ ├── CErrorHandlerStandard.h │ │ ├── CException.h │ │ ├── CFSimulator.h │ │ ├── CLogger.h │ │ ├── CLoggerFile.h │ │ ├── CLoggerStream.h │ │ ├── CLoggerSyslog.h │ │ ├── CMessage.h │ │ ├── CMessageRepository.h │ │ ├── CMessageTable.h │ │ ├── CMiniDumper.h │ │ ├── CSerializable.h │ │ ├── IErrorContext.h │ │ └── ILogger.h │ │ ├── io │ │ ├── CAutoFileDescriptor.h │ │ ├── CFileDescriptor.h │ │ ├── CFileReader.h │ │ ├── CFileWriter.h │ │ ├── COstream.h │ │ ├── COstreamBasic.h │ │ ├── COstreamFile.h │ │ ├── COstreamString.h │ │ ├── IOstream.h │ │ ├── iotypes.h │ │ └── ioutils.h │ │ ├── memory │ │ ├── CAutoMemoryPool.h │ │ ├── CCache.h │ │ ├── CCacheAccessor.h │ │ ├── CCacheEntry.h │ │ ├── CCacheFactory.h │ │ ├── CMemoryPool.h │ │ ├── CMemoryPoolAlloc.h │ │ ├── CMemoryPoolInjectFault.h │ │ ├── CMemoryPoolManager.h │ │ ├── CMemoryPoolSlab.h │ │ ├── CMemoryPoolStack.h │ │ ├── CMemoryPoolStatistics.h │ │ ├── CMemoryPoolTracker.h │ │ ├── CMemoryVisitorPrint.h │ │ ├── CSlab.h │ │ ├── CSlabCache.h │ │ ├── ICache.h │ │ ├── IMemoryPool.h │ │ ├── IMemoryVisitor.h │ │ └── README.md │ │ ├── net │ │ ├── nettypes.h │ │ └── netutils.h │ │ ├── string │ │ ├── CStringStatic.h │ │ ├── CWString.h │ │ ├── CWStringBase.h │ │ ├── CWStringConst.h │ │ ├── CWStringDynamic.h │ │ └── CWStringStatic.h │ │ ├── sync │ │ ├── CAtomicCounter.h │ │ ├── CAutoMutex.h │ │ ├── CAutoSpinlock.h │ │ ├── CEvent.h │ │ ├── CMutex.h │ │ ├── CMutex.inl │ │ ├── CSpinlock.h │ │ ├── CSpinlock.inl │ │ └── atomic.h │ │ ├── task │ │ ├── CAutoSuspendAbort.h │ │ ├── CAutoTaskProxy.h │ │ ├── CAutoTraceFlag.h │ │ ├── CTask.h │ │ ├── CTaskContext.h │ │ ├── CTaskId.h │ │ ├── CTaskLocalStorage.h │ │ ├── CTaskLocalStorageObject.h │ │ ├── CTaskSchedulerFifo.h │ │ ├── CThreadManager.h │ │ ├── CTraceFlagIter.h │ │ ├── CWorker.h │ │ ├── CWorkerId.h │ │ ├── CWorkerPoolManager.h │ │ ├── ITask.h │ │ ├── ITaskScheduler.h │ │ ├── IWorker.h │ │ └── traceflags.h │ │ ├── test │ │ ├── CFSimulatorTestExt.h │ │ ├── CTimeSliceTest.h │ │ └── CUnittest.h │ │ ├── types.h │ │ └── utils.h ├── src │ ├── Makefile │ ├── _api.cpp │ ├── common │ │ ├── CAutoTimer.cpp │ │ ├── CBitSet.cpp │ │ ├── CBitSetIter.cpp │ │ ├── CBitVector.cpp │ │ ├── CHeapObject.cpp │ │ ├── CMainArgs.cpp │ │ ├── CRandom.cpp │ │ ├── CStackDescriptor.cpp │ │ ├── CStackObject.cpp │ │ ├── CTimerUser.cpp │ │ ├── CWallClock.cpp │ │ ├── Makefile │ │ ├── clibwrapper.cpp │ │ ├── pthreadwrapper.cpp │ │ └── syslibwrapper.cpp │ ├── error │ │ ├── CAutoExceptionStack.cpp │ │ ├── CAutoTrace.cpp │ │ ├── CErrorContext.cpp │ │ ├── CErrorHandlerStandard.cpp │ │ ├── CException.cpp │ │ ├── CFSimulator.cpp │ │ ├── CLogger.cpp │ │ ├── CLoggerFile.cpp │ │ ├── CLoggerStream.cpp │ │ ├── CLoggerSyslog.cpp │ │ ├── CMessage.cpp │ │ ├── CMessageRepository.cpp │ │ ├── CMessageTable.cpp │ │ ├── CMiniDumper.cpp │ │ ├── CSerializable.cpp │ │ ├── ILogger.cpp │ │ └── Makefile │ ├── io │ │ ├── CFileDescriptor.cpp │ │ ├── CFileReader.cpp │ │ ├── CFileWriter.cpp │ │ ├── COstream.cpp │ │ ├── COstreamBasic.cpp │ │ ├── COstreamFile.cpp │ │ ├── COstreamString.cpp │ │ ├── Makefile │ │ └── ioutils.cpp │ ├── memory │ │ ├── CAutoMemoryPool.cpp │ │ ├── CCacheFactory.cpp │ │ ├── CMemoryPool.cpp │ │ ├── CMemoryPoolInjectFault.cpp │ │ ├── CMemoryPoolManager.cpp │ │ ├── CMemoryPoolSlab.cpp │ │ ├── CMemoryPoolStack.cpp │ │ ├── CMemoryPoolTracker.cpp │ │ ├── CMemoryVisitorPrint.cpp │ │ ├── CSlab.cpp │ │ ├── CSlabCache.cpp │ │ ├── IMemoryPool.cpp │ │ └── Makefile │ ├── net │ │ ├── Makefile │ │ └── netutils.cpp │ ├── string │ │ ├── CStringStatic.cpp │ │ ├── CWString.cpp │ │ ├── CWStringBase.cpp │ │ ├── CWStringConst.cpp │ │ ├── CWStringDynamic.cpp │ │ ├── CWStringStatic.cpp │ │ └── Makefile │ ├── sync │ │ ├── CAutoMutex.cpp │ │ ├── CAutoSpinlock.cpp │ │ ├── CEvent.cpp │ │ ├── Makefile │ │ └── atomic.cpp │ ├── task │ │ ├── CAutoSuspendAbort.cpp │ │ ├── CAutoTaskProxy.cpp │ │ ├── CAutoTraceFlag.cpp │ │ ├── CTask.cpp │ │ ├── CTaskContext.cpp │ │ ├── CTaskLocalStorage.cpp │ │ ├── CTaskSchedulerFifo.cpp │ │ ├── CThreadManager.cpp │ │ ├── CWorker.cpp │ │ ├── CWorkerId.cpp │ │ ├── CWorkerPoolManager.cpp │ │ ├── ITask.cpp │ │ ├── IWorker.cpp │ │ └── Makefile │ ├── test │ │ ├── CFSimulatorTestExt.cpp │ │ ├── CTimeSliceTest.cpp │ │ ├── CUnittest.cpp │ │ └── Makefile │ └── utils.cpp └── targzs │ ├── ivy-devel.xml │ ├── ivy.xml │ └── ivysettings.xml ├── make ├── complexity.sh ├── dependencies │ ├── build.xml │ ├── cacerts │ ├── ivy.xml │ ├── ivy_util.sh │ └── ivysettings.xml ├── gpo.mk ├── platform_defines.sh └── remote.sh ├── server ├── CMakeLists.txt ├── Makefile ├── include │ └── unittest │ │ └── gpos │ │ ├── common │ │ ├── CAutoPTest.h │ │ ├── CAutoRefTest.h │ │ ├── CAutoRgTest.h │ │ ├── CBitSetIterTest.h │ │ ├── CBitSetTest.h │ │ ├── CBitVectorTest.h │ │ ├── CDoubleTest.h │ │ ├── CDynamicPtrArrayTest.h │ │ ├── CEnumSetTest.h │ │ ├── CHashMapIterTest.h │ │ ├── CHashMapTest.h │ │ ├── CHashSetTest.h │ │ ├── CListTest.h │ │ ├── CRefCountTest.h │ │ ├── CStackTest.h │ │ ├── CSyncHashtableTest.h │ │ └── CSyncListTest.h │ │ ├── error │ │ ├── CErrorHandlerTest.h │ │ ├── CExceptionTest.h │ │ ├── CFSimulatorTest.h │ │ ├── CLoggerTest.h │ │ ├── CMessageRepositoryTest.h │ │ ├── CMessageTableTest.h │ │ ├── CMessageTest.h │ │ └── CMiniDumperTest.h │ │ ├── io │ │ ├── CFileTest.h │ │ ├── COstreamBasicTest.h │ │ ├── COstreamFileTest.h │ │ └── COstreamStringTest.h │ │ ├── memory │ │ ├── CCacheTest.h │ │ ├── CMemoryPoolAllocTest.h │ │ ├── CMemoryPoolBasicTest.h │ │ └── IMemoryPoolTest.h │ │ ├── string │ │ ├── CStringTest.h │ │ └── CWStringTest.h │ │ ├── sync │ │ ├── CAutoMutexTest.h │ │ ├── CAutoSpinlockTest.h │ │ ├── CEventTest.h │ │ ├── CMutexTest.h │ │ └── CSpinlockTest.h │ │ ├── task │ │ ├── CAutoTaskProxyTest.h │ │ ├── CTaskLocalStorageTest.h │ │ └── CWorkerPoolManagerTest.h │ │ └── test │ │ └── CUnittestTest.h └── src │ ├── Makefile │ ├── startup │ ├── Makefile │ └── main.cpp │ └── unittest │ ├── Makefile │ └── gpos │ ├── Makefile │ ├── common │ ├── CAutoPTest.cpp │ ├── CAutoRefTest.cpp │ ├── CAutoRgTest.cpp │ ├── CBitSetIterTest.cpp │ ├── CBitSetTest.cpp │ ├── CBitVectorTest.cpp │ ├── CDoubleTest.cpp │ ├── CDynamicPtrArrayTest.cpp │ ├── CEnumSetTest.cpp │ ├── CHashMapIterTest.cpp │ ├── CHashMapTest.cpp │ ├── CHashSetTest.cpp │ ├── CListTest.cpp │ ├── CRefCountTest.cpp │ ├── CStackTest.cpp │ ├── CSyncHashtableTest.cpp │ ├── CSyncListTest.cpp │ └── Makefile │ ├── error │ ├── CErrorHandlerTest.cpp │ ├── CExceptionTest.cpp │ ├── CFSimulatorTest.cpp │ ├── CLoggerTest.cpp │ ├── CMessageRepositoryTest.cpp │ ├── CMessageTableTest.cpp │ ├── CMessageTest.cpp │ ├── CMiniDumperTest.cpp │ └── Makefile │ ├── io │ ├── CFileTest.cpp │ ├── COstreamBasicTest.cpp │ ├── COstreamFileTest.cpp │ ├── COstreamStringTest.cpp │ └── Makefile │ ├── memory │ ├── CCacheTest.cpp │ ├── CMemoryPoolAllocTest.cpp │ ├── CMemoryPoolBasicTest.cpp │ ├── IMemoryPoolTest.cpp │ └── Makefile │ ├── net │ └── Makefile │ ├── string │ ├── CStringTest.cpp │ ├── CWStringTest.cpp │ └── Makefile │ ├── sync │ ├── CAutoMutexTest.cpp │ ├── CAutoSpinlockTest.cpp │ ├── CEventTest.cpp │ ├── CMutexTest.cpp │ ├── CSpinlockTest.cpp │ └── Makefile │ ├── task │ ├── CAutoTaskProxyTest.cpp │ ├── CTaskLocalStorageTest.cpp │ ├── CWorkerPoolManagerTest.cpp │ └── Makefile │ └── test │ ├── CUnittestTest.cpp │ └── Makefile ├── tools └── build.sh ├── version.h.in └── x86_64.toolchain.cmake /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /FindAtomics.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/FindAtomics.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/README.md -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /concourse/build_and_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/build_and_test.py -------------------------------------------------------------------------------- /concourse/build_centos5_debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/build_centos5_debug.yml -------------------------------------------------------------------------------- /concourse/build_centos5_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/build_centos5_release.yml -------------------------------------------------------------------------------- /concourse/build_centos6_debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/build_centos6_debug.yml -------------------------------------------------------------------------------- /concourse/build_centos6_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/build_centos6_release.yml -------------------------------------------------------------------------------- /concourse/build_debian8_debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/build_debian8_debug.yml -------------------------------------------------------------------------------- /concourse/build_debian8_debug_clang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/build_debian8_debug_clang.yml -------------------------------------------------------------------------------- /concourse/build_debian8_debug_clang_libcxx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/build_debian8_debug_clang_libcxx.yml -------------------------------------------------------------------------------- /concourse/build_debian8_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/build_debian8_release.yml -------------------------------------------------------------------------------- /concourse/build_debian8_release_clang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/build_debian8_release_clang.yml -------------------------------------------------------------------------------- /concourse/build_debian8_release_clang_libcxx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/build_debian8_release_clang_libcxx.yml -------------------------------------------------------------------------------- /concourse/build_osx32_debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/build_osx32_debug.yml -------------------------------------------------------------------------------- /concourse/build_osx32_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/build_osx32_release.yml -------------------------------------------------------------------------------- /concourse/package_tarball.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/package_tarball.bash -------------------------------------------------------------------------------- /concourse/package_tarball_centos5_debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/package_tarball_centos5_debug.yml -------------------------------------------------------------------------------- /concourse/package_tarball_centos5_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/package_tarball_centos5_release.yml -------------------------------------------------------------------------------- /concourse/package_tarball_centos6_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/package_tarball_centos6_release.yml -------------------------------------------------------------------------------- /concourse/package_tarball_debian8_debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/package_tarball_debian8_debug.yml -------------------------------------------------------------------------------- /concourse/package_tarball_debian8_debug_clang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/package_tarball_debian8_debug_clang.yml -------------------------------------------------------------------------------- /concourse/package_tarball_debian8_debug_clang_libcxx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/package_tarball_debian8_debug_clang_libcxx.yml -------------------------------------------------------------------------------- /concourse/package_tarball_debian8_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/package_tarball_debian8_release.yml -------------------------------------------------------------------------------- /concourse/package_tarball_debian8_release_clang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/package_tarball_debian8_release_clang.yml -------------------------------------------------------------------------------- /concourse/package_tarball_debian8_release_clang_libcxx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/package_tarball_debian8_release_clang_libcxx.yml -------------------------------------------------------------------------------- /concourse/package_tarball_osx32_debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/package_tarball_osx32_debug.yml -------------------------------------------------------------------------------- /concourse/package_tarball_osx32_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/package_tarball_osx32_release.yml -------------------------------------------------------------------------------- /concourse/publish_tag.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/publish_tag.bash -------------------------------------------------------------------------------- /concourse/publish_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/concourse/publish_tag.yml -------------------------------------------------------------------------------- /i386.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/i386.toolchain.cmake -------------------------------------------------------------------------------- /libgpos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/Makefile -------------------------------------------------------------------------------- /libgpos/include/gpos/_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/_api.h -------------------------------------------------------------------------------- /libgpos/include/gpos/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/assert.h -------------------------------------------------------------------------------- /libgpos/include/gpos/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/base.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CAutoP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CAutoP.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CAutoRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CAutoRef.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CAutoRg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CAutoRg.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CAutoTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CAutoTimer.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CBitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CBitSet.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CBitSetIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CBitSetIter.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CBitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CBitVector.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CDouble.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CDouble.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CDouble.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CDynamicPtrArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CDynamicPtrArray.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CDynamicPtrArray.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CDynamicPtrArray.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CDynamicPtrArrayUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CDynamicPtrArrayUtils.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CDynamicPtrArrayUtils.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CDynamicPtrArrayUtils.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CEnumSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CEnumSet.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CEnumSetIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CEnumSetIter.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CHashMap.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CHashMap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CHashMap.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CHashMapIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CHashMapIter.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CHashMapIter.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CHashMapIter.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CHashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CHashSet.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CHashSet.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CHashSet.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CHeapObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CHeapObject.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CList.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CList.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CList.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CMainArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CMainArgs.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CRandom.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CRefCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CRefCount.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CStack.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CStack.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CStack.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CStackDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CStackDescriptor.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CStackObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CStackObject.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncHashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncHashtable.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncHashtable.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncHashtable.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncHashtableAccessByIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncHashtableAccessByIter.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncHashtableAccessByIter.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncHashtableAccessByIter.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncHashtableAccessByKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncHashtableAccessByKey.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncHashtableAccessByKey.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncHashtableAccessByKey.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncHashtableAccessorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncHashtableAccessorBase.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncHashtableAccessorBase.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncHashtableAccessorBase.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncHashtableIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncHashtableIter.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncHashtableIter.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncHashtableIter.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncList.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncList.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncList.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncPool.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CSyncPool.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CSyncPool.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CTimerUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CTimerUser.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/CWallClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/CWallClock.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/ITimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/ITimer.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/clibtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/clibtypes.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/clibwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/clibwrapper.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/pthreadtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/pthreadtypes.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/pthreadwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/pthreadwrapper.h -------------------------------------------------------------------------------- /libgpos/include/gpos/common/syslibwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/common/syslibwrapper.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CAutoExceptionStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CAutoExceptionStack.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CAutoLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CAutoLogger.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CAutoTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CAutoTrace.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CErrorContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CErrorContext.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CErrorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CErrorHandler.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CErrorHandlerStandard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CErrorHandlerStandard.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CException.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CFSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CFSimulator.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CLogger.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CLoggerFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CLoggerFile.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CLoggerStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CLoggerStream.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CLoggerSyslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CLoggerSyslog.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CMessage.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CMessageRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CMessageRepository.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CMessageTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CMessageTable.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CMiniDumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CMiniDumper.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/CSerializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/CSerializable.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/IErrorContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/IErrorContext.h -------------------------------------------------------------------------------- /libgpos/include/gpos/error/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/error/ILogger.h -------------------------------------------------------------------------------- /libgpos/include/gpos/io/CAutoFileDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/io/CAutoFileDescriptor.h -------------------------------------------------------------------------------- /libgpos/include/gpos/io/CFileDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/io/CFileDescriptor.h -------------------------------------------------------------------------------- /libgpos/include/gpos/io/CFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/io/CFileReader.h -------------------------------------------------------------------------------- /libgpos/include/gpos/io/CFileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/io/CFileWriter.h -------------------------------------------------------------------------------- /libgpos/include/gpos/io/COstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/io/COstream.h -------------------------------------------------------------------------------- /libgpos/include/gpos/io/COstreamBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/io/COstreamBasic.h -------------------------------------------------------------------------------- /libgpos/include/gpos/io/COstreamFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/io/COstreamFile.h -------------------------------------------------------------------------------- /libgpos/include/gpos/io/COstreamString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/io/COstreamString.h -------------------------------------------------------------------------------- /libgpos/include/gpos/io/IOstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/io/IOstream.h -------------------------------------------------------------------------------- /libgpos/include/gpos/io/iotypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/io/iotypes.h -------------------------------------------------------------------------------- /libgpos/include/gpos/io/ioutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/io/ioutils.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CAutoMemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CAutoMemoryPool.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CCache.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CCacheAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CCacheAccessor.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CCacheEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CCacheEntry.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CCacheFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CCacheFactory.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CMemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CMemoryPool.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CMemoryPoolAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CMemoryPoolAlloc.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CMemoryPoolInjectFault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CMemoryPoolInjectFault.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CMemoryPoolManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CMemoryPoolManager.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CMemoryPoolSlab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CMemoryPoolSlab.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CMemoryPoolStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CMemoryPoolStack.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CMemoryPoolStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CMemoryPoolStatistics.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CMemoryPoolTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CMemoryPoolTracker.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CMemoryVisitorPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CMemoryVisitorPrint.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CSlab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CSlab.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/CSlabCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/CSlabCache.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/ICache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/ICache.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/IMemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/IMemoryPool.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/IMemoryVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/IMemoryVisitor.h -------------------------------------------------------------------------------- /libgpos/include/gpos/memory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/memory/README.md -------------------------------------------------------------------------------- /libgpos/include/gpos/net/nettypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/net/nettypes.h -------------------------------------------------------------------------------- /libgpos/include/gpos/net/netutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/net/netutils.h -------------------------------------------------------------------------------- /libgpos/include/gpos/string/CStringStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/string/CStringStatic.h -------------------------------------------------------------------------------- /libgpos/include/gpos/string/CWString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/string/CWString.h -------------------------------------------------------------------------------- /libgpos/include/gpos/string/CWStringBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/string/CWStringBase.h -------------------------------------------------------------------------------- /libgpos/include/gpos/string/CWStringConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/string/CWStringConst.h -------------------------------------------------------------------------------- /libgpos/include/gpos/string/CWStringDynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/string/CWStringDynamic.h -------------------------------------------------------------------------------- /libgpos/include/gpos/string/CWStringStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/string/CWStringStatic.h -------------------------------------------------------------------------------- /libgpos/include/gpos/sync/CAtomicCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/sync/CAtomicCounter.h -------------------------------------------------------------------------------- /libgpos/include/gpos/sync/CAutoMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/sync/CAutoMutex.h -------------------------------------------------------------------------------- /libgpos/include/gpos/sync/CAutoSpinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/sync/CAutoSpinlock.h -------------------------------------------------------------------------------- /libgpos/include/gpos/sync/CEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/sync/CEvent.h -------------------------------------------------------------------------------- /libgpos/include/gpos/sync/CMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/sync/CMutex.h -------------------------------------------------------------------------------- /libgpos/include/gpos/sync/CMutex.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/sync/CMutex.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/sync/CSpinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/sync/CSpinlock.h -------------------------------------------------------------------------------- /libgpos/include/gpos/sync/CSpinlock.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/sync/CSpinlock.inl -------------------------------------------------------------------------------- /libgpos/include/gpos/sync/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/sync/atomic.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CAutoSuspendAbort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CAutoSuspendAbort.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CAutoTaskProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CAutoTaskProxy.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CAutoTraceFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CAutoTraceFlag.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CTask.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CTaskContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CTaskContext.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CTaskId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CTaskId.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CTaskLocalStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CTaskLocalStorage.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CTaskLocalStorageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CTaskLocalStorageObject.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CTaskSchedulerFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CTaskSchedulerFifo.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CThreadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CThreadManager.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CTraceFlagIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CTraceFlagIter.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CWorker.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CWorkerId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CWorkerId.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/CWorkerPoolManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/CWorkerPoolManager.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/ITask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/ITask.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/ITaskScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/ITaskScheduler.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/IWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/IWorker.h -------------------------------------------------------------------------------- /libgpos/include/gpos/task/traceflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/task/traceflags.h -------------------------------------------------------------------------------- /libgpos/include/gpos/test/CFSimulatorTestExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/test/CFSimulatorTestExt.h -------------------------------------------------------------------------------- /libgpos/include/gpos/test/CTimeSliceTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/test/CTimeSliceTest.h -------------------------------------------------------------------------------- /libgpos/include/gpos/test/CUnittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/test/CUnittest.h -------------------------------------------------------------------------------- /libgpos/include/gpos/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/types.h -------------------------------------------------------------------------------- /libgpos/include/gpos/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/include/gpos/utils.h -------------------------------------------------------------------------------- /libgpos/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/Makefile -------------------------------------------------------------------------------- /libgpos/src/_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/_api.cpp -------------------------------------------------------------------------------- /libgpos/src/common/CAutoTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/CAutoTimer.cpp -------------------------------------------------------------------------------- /libgpos/src/common/CBitSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/CBitSet.cpp -------------------------------------------------------------------------------- /libgpos/src/common/CBitSetIter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/CBitSetIter.cpp -------------------------------------------------------------------------------- /libgpos/src/common/CBitVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/CBitVector.cpp -------------------------------------------------------------------------------- /libgpos/src/common/CHeapObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/CHeapObject.cpp -------------------------------------------------------------------------------- /libgpos/src/common/CMainArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/CMainArgs.cpp -------------------------------------------------------------------------------- /libgpos/src/common/CRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/CRandom.cpp -------------------------------------------------------------------------------- /libgpos/src/common/CStackDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/CStackDescriptor.cpp -------------------------------------------------------------------------------- /libgpos/src/common/CStackObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/CStackObject.cpp -------------------------------------------------------------------------------- /libgpos/src/common/CTimerUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/CTimerUser.cpp -------------------------------------------------------------------------------- /libgpos/src/common/CWallClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/CWallClock.cpp -------------------------------------------------------------------------------- /libgpos/src/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/Makefile -------------------------------------------------------------------------------- /libgpos/src/common/clibwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/clibwrapper.cpp -------------------------------------------------------------------------------- /libgpos/src/common/pthreadwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/pthreadwrapper.cpp -------------------------------------------------------------------------------- /libgpos/src/common/syslibwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/common/syslibwrapper.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CAutoExceptionStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CAutoExceptionStack.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CAutoTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CAutoTrace.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CErrorContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CErrorContext.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CErrorHandlerStandard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CErrorHandlerStandard.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CException.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CFSimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CFSimulator.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CLogger.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CLoggerFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CLoggerFile.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CLoggerStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CLoggerStream.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CLoggerSyslog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CLoggerSyslog.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CMessage.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CMessageRepository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CMessageRepository.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CMessageTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CMessageTable.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CMiniDumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CMiniDumper.cpp -------------------------------------------------------------------------------- /libgpos/src/error/CSerializable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/CSerializable.cpp -------------------------------------------------------------------------------- /libgpos/src/error/ILogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/ILogger.cpp -------------------------------------------------------------------------------- /libgpos/src/error/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/error/Makefile -------------------------------------------------------------------------------- /libgpos/src/io/CFileDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/io/CFileDescriptor.cpp -------------------------------------------------------------------------------- /libgpos/src/io/CFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/io/CFileReader.cpp -------------------------------------------------------------------------------- /libgpos/src/io/CFileWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/io/CFileWriter.cpp -------------------------------------------------------------------------------- /libgpos/src/io/COstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/io/COstream.cpp -------------------------------------------------------------------------------- /libgpos/src/io/COstreamBasic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/io/COstreamBasic.cpp -------------------------------------------------------------------------------- /libgpos/src/io/COstreamFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/io/COstreamFile.cpp -------------------------------------------------------------------------------- /libgpos/src/io/COstreamString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/io/COstreamString.cpp -------------------------------------------------------------------------------- /libgpos/src/io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/io/Makefile -------------------------------------------------------------------------------- /libgpos/src/io/ioutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/io/ioutils.cpp -------------------------------------------------------------------------------- /libgpos/src/memory/CAutoMemoryPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/memory/CAutoMemoryPool.cpp -------------------------------------------------------------------------------- /libgpos/src/memory/CCacheFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/memory/CCacheFactory.cpp -------------------------------------------------------------------------------- /libgpos/src/memory/CMemoryPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/memory/CMemoryPool.cpp -------------------------------------------------------------------------------- /libgpos/src/memory/CMemoryPoolInjectFault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/memory/CMemoryPoolInjectFault.cpp -------------------------------------------------------------------------------- /libgpos/src/memory/CMemoryPoolManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/memory/CMemoryPoolManager.cpp -------------------------------------------------------------------------------- /libgpos/src/memory/CMemoryPoolSlab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/memory/CMemoryPoolSlab.cpp -------------------------------------------------------------------------------- /libgpos/src/memory/CMemoryPoolStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/memory/CMemoryPoolStack.cpp -------------------------------------------------------------------------------- /libgpos/src/memory/CMemoryPoolTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/memory/CMemoryPoolTracker.cpp -------------------------------------------------------------------------------- /libgpos/src/memory/CMemoryVisitorPrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/memory/CMemoryVisitorPrint.cpp -------------------------------------------------------------------------------- /libgpos/src/memory/CSlab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/memory/CSlab.cpp -------------------------------------------------------------------------------- /libgpos/src/memory/CSlabCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/memory/CSlabCache.cpp -------------------------------------------------------------------------------- /libgpos/src/memory/IMemoryPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/memory/IMemoryPool.cpp -------------------------------------------------------------------------------- /libgpos/src/memory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/memory/Makefile -------------------------------------------------------------------------------- /libgpos/src/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/net/Makefile -------------------------------------------------------------------------------- /libgpos/src/net/netutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/net/netutils.cpp -------------------------------------------------------------------------------- /libgpos/src/string/CStringStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/string/CStringStatic.cpp -------------------------------------------------------------------------------- /libgpos/src/string/CWString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/string/CWString.cpp -------------------------------------------------------------------------------- /libgpos/src/string/CWStringBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/string/CWStringBase.cpp -------------------------------------------------------------------------------- /libgpos/src/string/CWStringConst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/string/CWStringConst.cpp -------------------------------------------------------------------------------- /libgpos/src/string/CWStringDynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/string/CWStringDynamic.cpp -------------------------------------------------------------------------------- /libgpos/src/string/CWStringStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/string/CWStringStatic.cpp -------------------------------------------------------------------------------- /libgpos/src/string/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/string/Makefile -------------------------------------------------------------------------------- /libgpos/src/sync/CAutoMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/sync/CAutoMutex.cpp -------------------------------------------------------------------------------- /libgpos/src/sync/CAutoSpinlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/sync/CAutoSpinlock.cpp -------------------------------------------------------------------------------- /libgpos/src/sync/CEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/sync/CEvent.cpp -------------------------------------------------------------------------------- /libgpos/src/sync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/sync/Makefile -------------------------------------------------------------------------------- /libgpos/src/sync/atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/sync/atomic.cpp -------------------------------------------------------------------------------- /libgpos/src/task/CAutoSuspendAbort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/CAutoSuspendAbort.cpp -------------------------------------------------------------------------------- /libgpos/src/task/CAutoTaskProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/CAutoTaskProxy.cpp -------------------------------------------------------------------------------- /libgpos/src/task/CAutoTraceFlag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/CAutoTraceFlag.cpp -------------------------------------------------------------------------------- /libgpos/src/task/CTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/CTask.cpp -------------------------------------------------------------------------------- /libgpos/src/task/CTaskContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/CTaskContext.cpp -------------------------------------------------------------------------------- /libgpos/src/task/CTaskLocalStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/CTaskLocalStorage.cpp -------------------------------------------------------------------------------- /libgpos/src/task/CTaskSchedulerFifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/CTaskSchedulerFifo.cpp -------------------------------------------------------------------------------- /libgpos/src/task/CThreadManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/CThreadManager.cpp -------------------------------------------------------------------------------- /libgpos/src/task/CWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/CWorker.cpp -------------------------------------------------------------------------------- /libgpos/src/task/CWorkerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/CWorkerId.cpp -------------------------------------------------------------------------------- /libgpos/src/task/CWorkerPoolManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/CWorkerPoolManager.cpp -------------------------------------------------------------------------------- /libgpos/src/task/ITask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/ITask.cpp -------------------------------------------------------------------------------- /libgpos/src/task/IWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/IWorker.cpp -------------------------------------------------------------------------------- /libgpos/src/task/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/task/Makefile -------------------------------------------------------------------------------- /libgpos/src/test/CFSimulatorTestExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/test/CFSimulatorTestExt.cpp -------------------------------------------------------------------------------- /libgpos/src/test/CTimeSliceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/test/CTimeSliceTest.cpp -------------------------------------------------------------------------------- /libgpos/src/test/CUnittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/test/CUnittest.cpp -------------------------------------------------------------------------------- /libgpos/src/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/test/Makefile -------------------------------------------------------------------------------- /libgpos/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/src/utils.cpp -------------------------------------------------------------------------------- /libgpos/targzs/ivy-devel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/targzs/ivy-devel.xml -------------------------------------------------------------------------------- /libgpos/targzs/ivy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/targzs/ivy.xml -------------------------------------------------------------------------------- /libgpos/targzs/ivysettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/libgpos/targzs/ivysettings.xml -------------------------------------------------------------------------------- /make/complexity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/make/complexity.sh -------------------------------------------------------------------------------- /make/dependencies/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/make/dependencies/build.xml -------------------------------------------------------------------------------- /make/dependencies/cacerts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/make/dependencies/cacerts -------------------------------------------------------------------------------- /make/dependencies/ivy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/make/dependencies/ivy.xml -------------------------------------------------------------------------------- /make/dependencies/ivy_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/make/dependencies/ivy_util.sh -------------------------------------------------------------------------------- /make/dependencies/ivysettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/make/dependencies/ivysettings.xml -------------------------------------------------------------------------------- /make/gpo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/make/gpo.mk -------------------------------------------------------------------------------- /make/platform_defines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/make/platform_defines.sh -------------------------------------------------------------------------------- /make/remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/make/remote.sh -------------------------------------------------------------------------------- /server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/Makefile -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CAutoPTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CAutoPTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CAutoRefTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CAutoRefTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CAutoRgTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CAutoRgTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CBitSetIterTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CBitSetIterTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CBitSetTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CBitSetTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CBitVectorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CBitVectorTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CDoubleTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CDoubleTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CDynamicPtrArrayTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CDynamicPtrArrayTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CEnumSetTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CEnumSetTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CHashMapIterTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CHashMapIterTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CHashMapTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CHashMapTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CHashSetTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CHashSetTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CListTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CListTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CRefCountTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CRefCountTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CStackTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CStackTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CSyncHashtableTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CSyncHashtableTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/common/CSyncListTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/common/CSyncListTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/error/CErrorHandlerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/error/CErrorHandlerTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/error/CExceptionTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/error/CExceptionTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/error/CFSimulatorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/error/CFSimulatorTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/error/CLoggerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/error/CLoggerTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/error/CMessageRepositoryTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/error/CMessageRepositoryTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/error/CMessageTableTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/error/CMessageTableTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/error/CMessageTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/error/CMessageTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/error/CMiniDumperTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/error/CMiniDumperTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/io/CFileTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/io/CFileTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/io/COstreamBasicTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/io/COstreamBasicTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/io/COstreamFileTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/io/COstreamFileTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/io/COstreamStringTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/io/COstreamStringTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/memory/CCacheTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/memory/CCacheTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/memory/CMemoryPoolAllocTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/memory/CMemoryPoolAllocTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/memory/CMemoryPoolBasicTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/memory/CMemoryPoolBasicTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/memory/IMemoryPoolTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/memory/IMemoryPoolTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/string/CStringTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/string/CStringTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/string/CWStringTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/string/CWStringTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/sync/CAutoMutexTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/sync/CAutoMutexTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/sync/CAutoSpinlockTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/sync/CAutoSpinlockTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/sync/CEventTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/sync/CEventTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/sync/CMutexTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/sync/CMutexTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/sync/CSpinlockTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/sync/CSpinlockTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/task/CAutoTaskProxyTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/task/CAutoTaskProxyTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/task/CTaskLocalStorageTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/task/CTaskLocalStorageTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/task/CWorkerPoolManagerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/task/CWorkerPoolManagerTest.h -------------------------------------------------------------------------------- /server/include/unittest/gpos/test/CUnittestTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/include/unittest/gpos/test/CUnittestTest.h -------------------------------------------------------------------------------- /server/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/Makefile -------------------------------------------------------------------------------- /server/src/startup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/startup/Makefile -------------------------------------------------------------------------------- /server/src/startup/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/startup/main.cpp -------------------------------------------------------------------------------- /server/src/unittest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/Makefile -------------------------------------------------------------------------------- /server/src/unittest/gpos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/Makefile -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CAutoPTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CAutoPTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CAutoRefTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CAutoRefTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CAutoRgTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CAutoRgTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CBitSetIterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CBitSetIterTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CBitSetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CBitSetTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CBitVectorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CBitVectorTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CDoubleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CDoubleTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CDynamicPtrArrayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CDynamicPtrArrayTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CEnumSetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CEnumSetTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CHashMapIterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CHashMapIterTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CHashMapTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CHashMapTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CHashSetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CHashSetTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CListTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CListTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CRefCountTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CRefCountTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CStackTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CStackTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CSyncHashtableTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CSyncHashtableTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/CSyncListTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/CSyncListTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/common/Makefile -------------------------------------------------------------------------------- /server/src/unittest/gpos/error/CErrorHandlerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/error/CErrorHandlerTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/error/CExceptionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/error/CExceptionTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/error/CFSimulatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/error/CFSimulatorTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/error/CLoggerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/error/CLoggerTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/error/CMessageRepositoryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/error/CMessageRepositoryTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/error/CMessageTableTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/error/CMessageTableTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/error/CMessageTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/error/CMessageTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/error/CMiniDumperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/error/CMiniDumperTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/error/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/error/Makefile -------------------------------------------------------------------------------- /server/src/unittest/gpos/io/CFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/io/CFileTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/io/COstreamBasicTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/io/COstreamBasicTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/io/COstreamFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/io/COstreamFileTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/io/COstreamStringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/io/COstreamStringTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/io/Makefile -------------------------------------------------------------------------------- /server/src/unittest/gpos/memory/CCacheTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/memory/CCacheTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/memory/CMemoryPoolAllocTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/memory/CMemoryPoolAllocTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/memory/CMemoryPoolBasicTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/memory/CMemoryPoolBasicTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/memory/IMemoryPoolTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/memory/IMemoryPoolTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/memory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/memory/Makefile -------------------------------------------------------------------------------- /server/src/unittest/gpos/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/net/Makefile -------------------------------------------------------------------------------- /server/src/unittest/gpos/string/CStringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/string/CStringTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/string/CWStringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/string/CWStringTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/string/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/string/Makefile -------------------------------------------------------------------------------- /server/src/unittest/gpos/sync/CAutoMutexTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/sync/CAutoMutexTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/sync/CAutoSpinlockTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/sync/CAutoSpinlockTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/sync/CEventTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/sync/CEventTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/sync/CMutexTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/sync/CMutexTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/sync/CSpinlockTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/sync/CSpinlockTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/sync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/sync/Makefile -------------------------------------------------------------------------------- /server/src/unittest/gpos/task/CAutoTaskProxyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/task/CAutoTaskProxyTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/task/CTaskLocalStorageTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/task/CTaskLocalStorageTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/task/CWorkerPoolManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/task/CWorkerPoolManagerTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/task/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/task/Makefile -------------------------------------------------------------------------------- /server/src/unittest/gpos/test/CUnittestTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/test/CUnittestTest.cpp -------------------------------------------------------------------------------- /server/src/unittest/gpos/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/server/src/unittest/gpos/test/Makefile -------------------------------------------------------------------------------- /tools/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/tools/build.sh -------------------------------------------------------------------------------- /version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/version.h.in -------------------------------------------------------------------------------- /x86_64.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/gpos/HEAD/x86_64.toolchain.cmake --------------------------------------------------------------------------------