├── ReadMe.txt ├── base ├── Atomic.h ├── BlockingQueue.h ├── BoundedBlockingQueue.h ├── Condition.cpp ├── Condition.h ├── CountDownLatch.cpp ├── CountDownLatch.h ├── CurrentThread.h ├── Date.cpp ├── Date.h ├── FileUtil.cpp ├── FileUtil.h ├── LogFile.cpp ├── LogFile.h ├── LogStream.cpp ├── LogStream.h ├── Logging.cpp ├── Logging.h ├── Mutex.h ├── MutexThreadPool.cpp ├── MutexThreadPool.h ├── ProcessInfo.cpp ├── ProcessInfo.h ├── Singleton.h ├── StringPiece.h ├── ThreadLocal.h ├── ThreadLocalSingleton.h ├── TimeZone.cpp ├── TimeZone.h ├── Timestamp.cpp ├── Timestamp.h ├── Type.h ├── Types.h ├── lockfree │ ├── atomicops.h │ ├── concurrentqueue.h │ ├── internal │ │ └── concurrentqueue_internal_debug.h │ ├── readerwriterqueue-master │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── atomicops.h │ │ ├── benchmarks │ │ │ ├── bench.cpp │ │ │ ├── ext │ │ │ │ ├── 1024cores │ │ │ │ │ └── spscqueue.h │ │ │ │ └── folly │ │ │ │ │ └── ProducerConsumerQueue.h │ │ │ ├── makefile │ │ │ ├── msvc10 │ │ │ │ ├── winbench-intel.vcxproj │ │ │ │ ├── winbench-intel.vcxproj.filters │ │ │ │ ├── winbench.sln │ │ │ │ ├── winbench.vcxproj │ │ │ │ └── winbench.vcxproj.filters │ │ │ ├── msvc12 │ │ │ │ ├── winbench-intel.vcxproj │ │ │ │ ├── winbench-intel.vcxproj.filters │ │ │ │ ├── winbench.sln │ │ │ │ ├── winbench.vcxproj │ │ │ │ └── winbench.vcxproj.filters │ │ │ ├── systemtime.cpp │ │ │ └── systemtime.h │ │ ├── readerwriterqueue.h │ │ └── tests │ │ │ ├── common │ │ │ ├── simplethread.cpp │ │ │ └── simplethread.h │ │ │ ├── stabtest │ │ │ ├── makefile │ │ │ ├── msvc10 │ │ │ │ ├── stabtest.sln │ │ │ │ ├── stabtest.vcxproj │ │ │ │ └── stabtest.vcxproj.filters │ │ │ ├── msvc12 │ │ │ │ ├── stabtest.sln │ │ │ │ ├── stabtest.vcxproj │ │ │ │ └── stabtest.vcxproj.filters │ │ │ └── stabtest.cpp │ │ │ └── unittests │ │ │ ├── makefile │ │ │ ├── minitest.h │ │ │ ├── msvc10 │ │ │ ├── unittests.sln │ │ │ ├── unittests.vcxproj │ │ │ └── unittests.vcxproj.filters │ │ │ ├── msvc12 │ │ │ ├── unittests.sln │ │ │ ├── unittests.vcxproj │ │ │ └── unittests.vcxproj.filters │ │ │ └── unittests.cpp │ ├── readerwriterqueue.h │ └── relacy │ │ ├── freelist.cpp │ │ ├── integrated.cpp │ │ ├── makefile │ │ ├── relacy │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── VERSION │ │ ├── example │ │ │ ├── cli_ws_deque │ │ │ │ ├── cli_ws_deque.cpp │ │ │ │ ├── msvc8 │ │ │ │ │ ├── cli_ws_deque.sln │ │ │ │ │ └── cli_ws_deque.vcproj │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── condvar │ │ │ │ ├── condvar.cpp │ │ │ │ ├── msvc8 │ │ │ │ │ ├── condvar.sln │ │ │ │ │ └── condvar.vcproj │ │ │ │ ├── msvc9 │ │ │ │ │ ├── condvar.sln │ │ │ │ │ └── condvar.vcproj │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── eao_blocking │ │ │ │ └── eao_blocking.cpp │ │ │ ├── eventcount │ │ │ │ ├── eventcount.cpp │ │ │ │ ├── msvc8 │ │ │ │ │ ├── eventcount.sln │ │ │ │ │ └── eventcount.vcproj │ │ │ │ ├── msvc9 │ │ │ │ │ ├── eventcount.sln │ │ │ │ │ └── eventcount.vcproj │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── examples │ │ │ │ ├── amp_condvar.hpp │ │ │ │ ├── examples.cpp │ │ │ │ ├── msvc9 │ │ │ │ │ ├── examples.sln │ │ │ │ │ └── examples.vcproj │ │ │ │ ├── spsc_overwrite_queue.hpp │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── java_ws_deque │ │ │ │ ├── java_ws_deque.cpp │ │ │ │ ├── msvc8 │ │ │ │ │ ├── java_ws_deque.sln │ │ │ │ │ └── java_ws_deque.vcproj │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── mpmc │ │ │ │ ├── mpmc.cpp │ │ │ │ ├── msvc8 │ │ │ │ │ ├── mpmc.sln │ │ │ │ │ └── mpmc.vcproj │ │ │ │ ├── pcx.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── mutex_business_logic │ │ │ │ ├── msvc8 │ │ │ │ │ ├── mutex_business_logic.sln │ │ │ │ │ └── mutex_business_logic.vcproj │ │ │ │ ├── mutex_business_logic.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── peterson │ │ │ │ ├── msvc8 │ │ │ │ │ ├── peterson.sln │ │ │ │ │ └── peterson.vcproj │ │ │ │ ├── msvc9 │ │ │ │ │ ├── peterson.sln │ │ │ │ │ └── peterson.vcproj │ │ │ │ ├── peterson.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── proxy_collector │ │ │ │ ├── msvc8 │ │ │ │ │ ├── proxy_collector.sln │ │ │ │ │ └── proxy_collector.vcproj │ │ │ │ ├── msvc9 │ │ │ │ │ ├── proxy_collector.sln │ │ │ │ │ └── proxy_collector.vcproj │ │ │ │ ├── proxy_collector.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── ref_counting │ │ │ │ ├── msvc8 │ │ │ │ │ ├── ref_counting.sln │ │ │ │ │ └── ref_counting.vcproj │ │ │ │ ├── msvc9 │ │ │ │ │ ├── ref_counting.sln │ │ │ │ │ └── ref_counting.vcproj │ │ │ │ ├── ref_counting.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── smr │ │ │ │ ├── g++ │ │ │ │ │ └── Makefile │ │ │ │ ├── msvc8 │ │ │ │ │ ├── smr.sln │ │ │ │ │ └── smr.vcproj │ │ │ │ ├── msvc9 │ │ │ │ │ ├── smr.sln │ │ │ │ │ └── smr.vcproj │ │ │ │ ├── smr.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── spsc_queue │ │ │ │ ├── msvc8 │ │ │ │ │ ├── spsc_queue.sln │ │ │ │ │ └── spsc_queue.vcproj │ │ │ │ ├── msvc9 │ │ │ │ │ ├── spsc_queue.sln │ │ │ │ │ └── spsc_queue.vcproj │ │ │ │ ├── spsc_queue.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── stack │ │ │ │ ├── DESCRIPTION.TXT │ │ │ │ ├── msvc8 │ │ │ │ │ ├── stack.sln │ │ │ │ │ └── stack.vcproj │ │ │ │ ├── msvc9 │ │ │ │ │ ├── stack.sln │ │ │ │ │ └── stack.vcproj │ │ │ │ ├── stack.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── tbb_eventcount │ │ │ │ ├── eventcount.cpp │ │ │ │ ├── msvc8 │ │ │ │ │ ├── eventcount.sln │ │ │ │ │ └── eventcount.vcproj │ │ │ │ ├── msvc9 │ │ │ │ │ ├── eventcount.sln │ │ │ │ │ └── eventcount.vcproj │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── ws_deque │ │ │ │ ├── msvc8 │ │ │ │ │ ├── ws_deque.sln │ │ │ │ │ └── ws_deque.vcproj │ │ │ │ ├── msvc9 │ │ │ │ │ ├── ws_deque.sln │ │ │ │ │ └── ws_deque.vcproj │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── ws_deque.cpp │ │ │ └── ws_deque2 │ │ │ │ ├── msvc8 │ │ │ │ ├── ws_deque.sln │ │ │ │ └── ws_deque.vcproj │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── ws_deque.cpp │ │ ├── relacy │ │ │ ├── atomic.hpp │ │ │ ├── atomic_events.hpp │ │ │ ├── atomic_fence.hpp │ │ │ ├── backoff.hpp │ │ │ ├── base.hpp │ │ │ ├── cli.hpp │ │ │ ├── cli_interlocked.hpp │ │ │ ├── cli_var.hpp │ │ │ ├── cli_volatile.hpp │ │ │ ├── context.hpp │ │ │ ├── context_addr_hash.hpp │ │ │ ├── context_base.hpp │ │ │ ├── context_base_impl.hpp │ │ │ ├── context_bound_scheduler.hpp │ │ │ ├── defs.hpp │ │ │ ├── dyn_thread.hpp │ │ │ ├── dyn_thread_ctx.hpp │ │ │ ├── foreach.hpp │ │ │ ├── full_search_scheduler.hpp │ │ │ ├── history.hpp │ │ │ ├── java.hpp │ │ │ ├── java_atomic.hpp │ │ │ ├── java_var.hpp │ │ │ ├── java_volatile.hpp │ │ │ ├── memory.hpp │ │ │ ├── memory_order.hpp │ │ │ ├── pch.hpp │ │ │ ├── platform.hpp │ │ │ ├── pthread.h │ │ │ ├── random.hpp │ │ │ ├── random_scheduler.hpp │ │ │ ├── relacy.hpp │ │ │ ├── relacy_cli.hpp │ │ │ ├── relacy_java.hpp │ │ │ ├── relacy_std.hpp │ │ │ ├── rmw.hpp │ │ │ ├── scheduler.hpp │ │ │ ├── signature.hpp │ │ │ ├── slab_allocator.hpp │ │ │ ├── stdlib │ │ │ │ ├── condition_variable.hpp │ │ │ │ ├── event.hpp │ │ │ │ ├── mutex.hpp │ │ │ │ ├── pthread.hpp │ │ │ │ ├── semaphore.hpp │ │ │ │ └── windows.hpp │ │ │ ├── sync_var.hpp │ │ │ ├── test_params.hpp │ │ │ ├── test_result.hpp │ │ │ ├── test_suite.hpp │ │ │ ├── thread.hpp │ │ │ ├── thread_base.hpp │ │ │ ├── thread_local.hpp │ │ │ ├── thread_local_ctx.hpp │ │ │ ├── var.hpp │ │ │ ├── volatile.hpp │ │ │ ├── waitset.hpp │ │ │ └── windows.h │ │ └── test │ │ │ ├── addr_hash.hpp │ │ │ ├── advanced.txt │ │ │ ├── compare_swap.hpp │ │ │ ├── condvar.hpp │ │ │ ├── data_race.hpp │ │ │ ├── detection.txt │ │ │ ├── dyn_thread.hpp │ │ │ ├── event.hpp │ │ │ ├── features.txt │ │ │ ├── fence.hpp │ │ │ ├── foo.cpp │ │ │ ├── futex.hpp │ │ │ ├── g++ │ │ │ ├── build_all_cygwin_debug.bat │ │ │ ├── build_all_debug.bat │ │ │ ├── build_all_release.sh │ │ │ ├── build_cygwin_release.cmd │ │ │ ├── build_debug.cmd │ │ │ ├── build_release.cmd │ │ │ └── test.cpp │ │ │ ├── jtest │ │ │ ├── jtest.cpp │ │ │ ├── msvc8 │ │ │ │ ├── jtest.sln │ │ │ │ └── jtest.vcproj │ │ │ ├── msvc9 │ │ │ │ ├── jtest.sln │ │ │ │ └── jtest.vcproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ │ ├── main.cpp │ │ │ ├── memory.hpp │ │ │ ├── memory_order.hpp │ │ │ ├── msvc71 │ │ │ ├── test.sln │ │ │ └── test.vcproj │ │ │ ├── msvc8 │ │ │ ├── rrd.sln │ │ │ ├── rrd.vcproj │ │ │ ├── test.sln │ │ │ └── test.vcproj │ │ │ ├── msvc9 │ │ │ ├── rrd.sln │ │ │ ├── rrd.vcproj │ │ │ ├── test.sln │ │ │ └── test.vcproj │ │ │ ├── mutex.hpp │ │ │ ├── ntest │ │ │ ├── msvc8 │ │ │ │ ├── ntest.sln │ │ │ │ └── ntest.vcproj │ │ │ ├── msvc9 │ │ │ │ ├── ntest.sln │ │ │ │ └── ntest.vcproj │ │ │ ├── ntest.cpp │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ │ ├── pthread.hpp │ │ │ ├── scheduler.hpp │ │ │ ├── semaphore.hpp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── thread_local.hpp │ │ │ ├── todo.txt │ │ │ ├── trash │ │ │ ├── original.hpp │ │ │ └── rtl.hpp │ │ │ ├── tutorial.txt │ │ │ ├── wfmo.hpp │ │ │ └── windows.hpp │ │ ├── relacy_shims.h │ │ └── spmchash.cpp ├── log.cpp ├── log.h ├── thread.cpp ├── thread.h ├── threadpool.cpp └── threadpool.h ├── example ├── NTP │ ├── makefile │ └── roundtrip.cpp ├── benchmark │ ├── buffer_Makefile │ ├── buffer_test.cpp │ ├── libmuduo_base.a │ ├── libmuduo_net.a │ ├── makefile │ ├── muduo_test.cpp │ ├── pingpongCli_Makefile │ ├── pingpongSer_Makefile │ ├── pingpong_bench.cpp │ ├── pingpong_clinet.cpp │ ├── pingpong_server.cpp │ ├── pinpong_Makefile │ ├── systemtime.cpp │ └── systemtime.h ├── chargen │ ├── Makefile_ChargenClient │ ├── Makefile_ChargenServer │ ├── chargen.cpp │ ├── chargen.h │ ├── chargen_client.cpp │ └── chargen_server.cpp ├── chat │ ├── client.cpp │ ├── client_Makefile │ ├── codec.h │ ├── loadtest.cpp │ ├── server_Makefile │ ├── server_thread.cpp │ ├── server_threadlocal.cpp │ └── serverlocal_Makefile ├── daytime │ ├── daytime.cpp │ ├── daytime.h │ ├── main.cpp │ └── makefile ├── echo │ ├── echo.cpp │ ├── echo.h │ ├── main.cpp │ └── makefile ├── filetransfer │ ├── Makefile1 │ ├── Makefile2 │ ├── client_Makefile │ ├── download1.cpp │ ├── download2.cpp │ ├── filetransfer.cpp │ └── test ├── idleconnection │ ├── echo.cpp │ ├── echo.h │ ├── main.cpp │ └── makefile ├── lockfree │ ├── .server_threadpool.cpp.swp │ ├── lockfree_echo.cpp │ ├── makefile │ └── sudoku │ │ ├── multiloop_Makefile │ │ ├── multiloop_server │ │ ├── server_threadpool.cpp │ │ ├── sever_multiloop.cpp │ │ ├── sever_multiloop.o │ │ ├── sudoku.cpp │ │ ├── sudoku.h │ │ ├── sudoku_server │ │ └── threadpool_Makefile ├── maxconnection │ ├── echo.cpp │ ├── echo.h │ ├── main.cpp │ └── makefile ├── other │ ├── client.cpp │ ├── codec.h │ ├── makefile │ └── qq_server_threaded_efficient.cpp ├── sudoku │ ├── multiloop_Makefile │ ├── server_threadpool.cpp │ ├── sever_multiloop.cpp │ ├── sudoku.cpp │ ├── sudoku.h │ └── threadpool_Makefile └── time │ ├── client_Makefile │ ├── kimg_time.cpp │ ├── kimg_time.h │ ├── makefile │ ├── time_client.cpp │ └── time_server.cpp └── net ├── Acceptor.cpp ├── Acceptor.h ├── Buffer.cpp ├── Buffer.h ├── Callbacks.h ├── Channel.cpp ├── Channel.h ├── CircularBuffer.cpp ├── CircularBuffer.h ├── Connector.cpp ├── Connector.h ├── Endian.h ├── EventLoop.cpp ├── EventLoop.h ├── EventLoopThread.cpp ├── EventLoopThread.h ├── EventLoopThreadPool.cpp ├── EventLoopThreadPool.h ├── InetAddress.cpp ├── InetAddress.h ├── Poller.cpp ├── Poller.h ├── Socket.cpp ├── Socket.h ├── SocketOps.cpp ├── SocketOps.h ├── TcpClient.cpp ├── TcpClient.h ├── TcpConnection.cpp ├── TcpConnection.h ├── TcpServer.cpp ├── TcpServer.h ├── Timer.cpp ├── Timer.h ├── TimerId.h ├── TimerQueue.cpp ├── TimerQueue.h ├── anyone.h ├── boilerplate.cpp ├── boilerplate.h ├── http ├── HttpContext.h ├── HttpRequest.h ├── HttpResponse.cpp ├── HttpResponse.h ├── HttpServer.cpp └── HttpServer.h ├── inspect ├── Inspector.cpp ├── Inspector.h ├── ProcessInspector.cpp └── ProcessInspector.h └── poller ├── DefaultPoller.cpp ├── EPollPoller.cpp ├── EPollPoller.h ├── PollPoller.cpp └── PollPoller.h /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /base/Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/Atomic.h -------------------------------------------------------------------------------- /base/BlockingQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/BlockingQueue.h -------------------------------------------------------------------------------- /base/BoundedBlockingQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/BoundedBlockingQueue.h -------------------------------------------------------------------------------- /base/Condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/Condition.cpp -------------------------------------------------------------------------------- /base/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/Condition.h -------------------------------------------------------------------------------- /base/CountDownLatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/CountDownLatch.cpp -------------------------------------------------------------------------------- /base/CountDownLatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/CountDownLatch.h -------------------------------------------------------------------------------- /base/CurrentThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/CurrentThread.h -------------------------------------------------------------------------------- /base/Date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/Date.cpp -------------------------------------------------------------------------------- /base/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/Date.h -------------------------------------------------------------------------------- /base/FileUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/FileUtil.cpp -------------------------------------------------------------------------------- /base/FileUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/FileUtil.h -------------------------------------------------------------------------------- /base/LogFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/LogFile.cpp -------------------------------------------------------------------------------- /base/LogFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/LogFile.h -------------------------------------------------------------------------------- /base/LogStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/LogStream.cpp -------------------------------------------------------------------------------- /base/LogStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/LogStream.h -------------------------------------------------------------------------------- /base/Logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/Logging.cpp -------------------------------------------------------------------------------- /base/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/Logging.h -------------------------------------------------------------------------------- /base/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/Mutex.h -------------------------------------------------------------------------------- /base/MutexThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/MutexThreadPool.cpp -------------------------------------------------------------------------------- /base/MutexThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/MutexThreadPool.h -------------------------------------------------------------------------------- /base/ProcessInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/ProcessInfo.cpp -------------------------------------------------------------------------------- /base/ProcessInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/ProcessInfo.h -------------------------------------------------------------------------------- /base/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/Singleton.h -------------------------------------------------------------------------------- /base/StringPiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/StringPiece.h -------------------------------------------------------------------------------- /base/ThreadLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/ThreadLocal.h -------------------------------------------------------------------------------- /base/ThreadLocalSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/ThreadLocalSingleton.h -------------------------------------------------------------------------------- /base/TimeZone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/TimeZone.cpp -------------------------------------------------------------------------------- /base/TimeZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/TimeZone.h -------------------------------------------------------------------------------- /base/Timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/Timestamp.cpp -------------------------------------------------------------------------------- /base/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/Timestamp.h -------------------------------------------------------------------------------- /base/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/Type.h -------------------------------------------------------------------------------- /base/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/Types.h -------------------------------------------------------------------------------- /base/lockfree/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/atomicops.h -------------------------------------------------------------------------------- /base/lockfree/concurrentqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/concurrentqueue.h -------------------------------------------------------------------------------- /base/lockfree/internal/concurrentqueue_internal_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/internal/concurrentqueue_internal_debug.h -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/.gitignore -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/LICENSE.md -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/README.md -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/atomicops.h -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/bench.cpp -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/ext/1024cores/spscqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/ext/1024cores/spscqueue.h -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/ext/folly/ProducerConsumerQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/ext/folly/ProducerConsumerQueue.h -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/makefile -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/msvc10/winbench-intel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/msvc10/winbench-intel.vcxproj -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/msvc10/winbench-intel.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/msvc10/winbench-intel.vcxproj.filters -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/msvc10/winbench.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/msvc10/winbench.sln -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/msvc10/winbench.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/msvc10/winbench.vcxproj -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/msvc10/winbench.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/msvc10/winbench.vcxproj.filters -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/msvc12/winbench-intel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/msvc12/winbench-intel.vcxproj -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/msvc12/winbench-intel.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/msvc12/winbench-intel.vcxproj.filters -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/msvc12/winbench.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/msvc12/winbench.sln -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/msvc12/winbench.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/msvc12/winbench.vcxproj -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/msvc12/winbench.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/msvc12/winbench.vcxproj.filters -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/systemtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/systemtime.cpp -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/benchmarks/systemtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/benchmarks/systemtime.h -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/readerwriterqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/readerwriterqueue.h -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/common/simplethread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/common/simplethread.cpp -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/common/simplethread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/common/simplethread.h -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/stabtest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/stabtest/makefile -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/stabtest/msvc10/stabtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/stabtest/msvc10/stabtest.sln -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/stabtest/msvc10/stabtest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/stabtest/msvc10/stabtest.vcxproj -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/stabtest/msvc10/stabtest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/stabtest/msvc10/stabtest.vcxproj.filters -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/stabtest/msvc12/stabtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/stabtest/msvc12/stabtest.sln -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/stabtest/msvc12/stabtest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/stabtest/msvc12/stabtest.vcxproj -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/stabtest/msvc12/stabtest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/stabtest/msvc12/stabtest.vcxproj.filters -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/stabtest/stabtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/stabtest/stabtest.cpp -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/unittests/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/unittests/makefile -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/unittests/minitest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/unittests/minitest.h -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/unittests/msvc10/unittests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/unittests/msvc10/unittests.sln -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/unittests/msvc10/unittests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/unittests/msvc10/unittests.vcxproj -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/unittests/msvc10/unittests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/unittests/msvc10/unittests.vcxproj.filters -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/unittests/msvc12/unittests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/unittests/msvc12/unittests.sln -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/unittests/msvc12/unittests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/unittests/msvc12/unittests.vcxproj -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/unittests/msvc12/unittests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/unittests/msvc12/unittests.vcxproj.filters -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue-master/tests/unittests/unittests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue-master/tests/unittests/unittests.cpp -------------------------------------------------------------------------------- /base/lockfree/readerwriterqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/readerwriterqueue.h -------------------------------------------------------------------------------- /base/lockfree/relacy/freelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/freelist.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/integrated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/integrated.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/makefile -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/CHANGES -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/LICENSE -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/VERSION: -------------------------------------------------------------------------------- 1 | 974f5c228473 -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/cli_ws_deque/cli_ws_deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/cli_ws_deque/cli_ws_deque.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/cli_ws_deque/msvc8/cli_ws_deque.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/cli_ws_deque/msvc8/cli_ws_deque.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/cli_ws_deque/msvc8/cli_ws_deque.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/cli_ws_deque/msvc8/cli_ws_deque.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/cli_ws_deque/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/cli_ws_deque/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/cli_ws_deque/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/condvar/condvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/condvar/condvar.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/condvar/msvc8/condvar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/condvar/msvc8/condvar.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/condvar/msvc8/condvar.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/condvar/msvc8/condvar.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/condvar/msvc9/condvar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/condvar/msvc9/condvar.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/condvar/msvc9/condvar.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/condvar/msvc9/condvar.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/condvar/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/condvar/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/condvar/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/eao_blocking/eao_blocking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/eao_blocking/eao_blocking.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/eventcount/eventcount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/eventcount/eventcount.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/eventcount/msvc8/eventcount.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/eventcount/msvc8/eventcount.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/eventcount/msvc8/eventcount.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/eventcount/msvc8/eventcount.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/eventcount/msvc9/eventcount.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/eventcount/msvc9/eventcount.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/eventcount/msvc9/eventcount.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/eventcount/msvc9/eventcount.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/eventcount/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/eventcount/stdafx.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/eventcount/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/eventcount/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/examples/amp_condvar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/examples/amp_condvar.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/examples/examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/examples/examples.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/examples/msvc9/examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/examples/msvc9/examples.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/examples/msvc9/examples.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/examples/msvc9/examples.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/examples/spsc_overwrite_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/examples/spsc_overwrite_queue.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/examples/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/examples/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/examples/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/java_ws_deque/java_ws_deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/java_ws_deque/java_ws_deque.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/java_ws_deque/msvc8/java_ws_deque.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/java_ws_deque/msvc8/java_ws_deque.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/java_ws_deque/msvc8/java_ws_deque.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/java_ws_deque/msvc8/java_ws_deque.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/java_ws_deque/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/java_ws_deque/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/java_ws_deque/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/mpmc/mpmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/mpmc/mpmc.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/mpmc/msvc8/mpmc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/mpmc/msvc8/mpmc.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/mpmc/msvc8/mpmc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/mpmc/msvc8/mpmc.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/mpmc/pcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/mpmc/pcx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/mpmc/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/mpmc/stdafx.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/mpmc/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/mpmc/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/mutex_business_logic/msvc8/mutex_business_logic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/mutex_business_logic/msvc8/mutex_business_logic.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/mutex_business_logic/msvc8/mutex_business_logic.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/mutex_business_logic/msvc8/mutex_business_logic.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/mutex_business_logic/mutex_business_logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/mutex_business_logic/mutex_business_logic.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/mutex_business_logic/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/mutex_business_logic/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/mutex_business_logic/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/peterson/msvc8/peterson.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/peterson/msvc8/peterson.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/peterson/msvc8/peterson.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/peterson/msvc8/peterson.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/peterson/msvc9/peterson.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/peterson/msvc9/peterson.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/peterson/msvc9/peterson.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/peterson/msvc9/peterson.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/peterson/peterson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/peterson/peterson.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/peterson/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/peterson/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/peterson/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/proxy_collector/msvc8/proxy_collector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/proxy_collector/msvc8/proxy_collector.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/proxy_collector/msvc8/proxy_collector.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/proxy_collector/msvc8/proxy_collector.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/proxy_collector/msvc9/proxy_collector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/proxy_collector/msvc9/proxy_collector.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/proxy_collector/msvc9/proxy_collector.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/proxy_collector/msvc9/proxy_collector.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/proxy_collector/proxy_collector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/proxy_collector/proxy_collector.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/proxy_collector/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/proxy_collector/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/proxy_collector/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ref_counting/msvc8/ref_counting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ref_counting/msvc8/ref_counting.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ref_counting/msvc8/ref_counting.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ref_counting/msvc8/ref_counting.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ref_counting/msvc9/ref_counting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ref_counting/msvc9/ref_counting.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ref_counting/msvc9/ref_counting.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ref_counting/msvc9/ref_counting.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ref_counting/ref_counting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ref_counting/ref_counting.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ref_counting/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ref_counting/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ref_counting/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/smr/g++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/smr/g++/Makefile -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/smr/msvc8/smr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/smr/msvc8/smr.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/smr/msvc8/smr.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/smr/msvc8/smr.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/smr/msvc9/smr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/smr/msvc9/smr.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/smr/msvc9/smr.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/smr/msvc9/smr.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/smr/smr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/smr/smr.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/smr/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/smr/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/smr/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/spsc_queue/msvc8/spsc_queue.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/spsc_queue/msvc8/spsc_queue.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/spsc_queue/msvc8/spsc_queue.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/spsc_queue/msvc8/spsc_queue.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/spsc_queue/msvc9/spsc_queue.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/spsc_queue/msvc9/spsc_queue.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/spsc_queue/msvc9/spsc_queue.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/spsc_queue/msvc9/spsc_queue.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/spsc_queue/spsc_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/spsc_queue/spsc_queue.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/spsc_queue/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/spsc_queue/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/spsc_queue/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/stack/DESCRIPTION.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/stack/DESCRIPTION.TXT -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/stack/msvc8/stack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/stack/msvc8/stack.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/stack/msvc8/stack.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/stack/msvc8/stack.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/stack/msvc9/stack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/stack/msvc9/stack.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/stack/msvc9/stack.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/stack/msvc9/stack.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/stack/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/stack/stack.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/stack/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/stack/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/stack/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/tbb_eventcount/eventcount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/tbb_eventcount/eventcount.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/tbb_eventcount/msvc8/eventcount.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/tbb_eventcount/msvc8/eventcount.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/tbb_eventcount/msvc8/eventcount.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/tbb_eventcount/msvc8/eventcount.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/tbb_eventcount/msvc9/eventcount.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/tbb_eventcount/msvc9/eventcount.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/tbb_eventcount/msvc9/eventcount.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/tbb_eventcount/msvc9/eventcount.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/tbb_eventcount/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/tbb_eventcount/stdafx.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/tbb_eventcount/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/tbb_eventcount/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ws_deque/msvc8/ws_deque.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ws_deque/msvc8/ws_deque.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ws_deque/msvc8/ws_deque.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ws_deque/msvc8/ws_deque.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ws_deque/msvc9/ws_deque.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ws_deque/msvc9/ws_deque.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ws_deque/msvc9/ws_deque.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ws_deque/msvc9/ws_deque.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ws_deque/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ws_deque/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ws_deque/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ws_deque/ws_deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ws_deque/ws_deque.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ws_deque2/msvc8/ws_deque.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ws_deque2/msvc8/ws_deque.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ws_deque2/msvc8/ws_deque.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ws_deque2/msvc8/ws_deque.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ws_deque2/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ws_deque2/stdafx.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ws_deque2/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ws_deque2/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/example/ws_deque2/ws_deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/example/ws_deque2/ws_deque.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/atomic.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/atomic_events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/atomic_events.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/atomic_fence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/atomic_fence.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/backoff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/backoff.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/base.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/cli.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/cli.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/cli_interlocked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/cli_interlocked.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/cli_var.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/cli_var.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/cli_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/cli_volatile.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/context.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/context_addr_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/context_addr_hash.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/context_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/context_base.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/context_base_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/context_base_impl.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/context_bound_scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/context_bound_scheduler.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/defs.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/dyn_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/dyn_thread.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/dyn_thread_ctx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/dyn_thread_ctx.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/foreach.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/foreach.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/full_search_scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/full_search_scheduler.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/history.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/java.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/java.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/java_atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/java_atomic.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/java_var.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/java_var.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/java_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/java_volatile.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/memory.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/memory_order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/memory_order.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/pch.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/platform.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/pthread.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/random.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/random_scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/random_scheduler.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/relacy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/relacy.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/relacy_cli.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/relacy_cli.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/relacy_java.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/relacy_java.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/relacy_std.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/relacy_std.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/rmw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/rmw.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/scheduler.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/signature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/signature.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/slab_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/slab_allocator.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/stdlib/condition_variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/stdlib/condition_variable.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/stdlib/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/stdlib/event.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/stdlib/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/stdlib/mutex.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/stdlib/pthread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/stdlib/pthread.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/stdlib/semaphore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/stdlib/semaphore.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/stdlib/windows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/stdlib/windows.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/sync_var.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/sync_var.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/test_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/test_params.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/test_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/test_result.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/test_suite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/test_suite.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/thread.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/thread_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/thread_base.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/thread_local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/thread_local.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/thread_local_ctx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/thread_local_ctx.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/var.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/var.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/volatile.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/waitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/waitset.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/relacy/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/relacy/windows.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/addr_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/addr_hash.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/advanced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/advanced.txt -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/compare_swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/compare_swap.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/condvar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/condvar.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/data_race.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/data_race.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/detection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/detection.txt -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/dyn_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/dyn_thread.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/event.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/features.txt -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/fence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/fence.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/foo.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/futex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/futex.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/g++/build_all_cygwin_debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/g++/build_all_cygwin_debug.bat -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/g++/build_all_debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/g++/build_all_debug.bat -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/g++/build_all_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/g++/build_all_release.sh -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/g++/build_cygwin_release.cmd: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | g++ ../main.cpp -o test_release.exe -DNDEBUG -DRL_CYGWIN_STUB -Wall -O3 3 | 4 | 5 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/g++/build_debug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/g++/build_debug.cmd -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/g++/build_release.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/g++/build_release.cmd -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/g++/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/g++/test.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/jtest/jtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/jtest/jtest.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/jtest/msvc8/jtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/jtest/msvc8/jtest.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/jtest/msvc8/jtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/jtest/msvc8/jtest.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/jtest/msvc9/jtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/jtest/msvc9/jtest.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/jtest/msvc9/jtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/jtest/msvc9/jtest.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/jtest/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/jtest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/jtest/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/main.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/memory.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/memory_order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/memory_order.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/msvc71/test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/msvc71/test.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/msvc71/test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/msvc71/test.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/msvc8/rrd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/msvc8/rrd.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/msvc8/rrd.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/msvc8/rrd.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/msvc8/test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/msvc8/test.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/msvc8/test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/msvc8/test.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/msvc9/rrd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/msvc9/rrd.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/msvc9/rrd.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/msvc9/rrd.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/msvc9/test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/msvc9/test.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/msvc9/test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/msvc9/test.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/mutex.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/ntest/msvc8/ntest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/ntest/msvc8/ntest.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/ntest/msvc8/ntest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/ntest/msvc8/ntest.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/ntest/msvc9/ntest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/ntest/msvc9/ntest.sln -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/ntest/msvc9/ntest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/ntest/msvc9/ntest.vcproj -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/ntest/ntest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/ntest/ntest.cpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/ntest/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/ntest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/ntest/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/pthread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/pthread.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/scheduler.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/semaphore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/semaphore.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/stdafx.h -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/thread_local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/thread_local.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/todo.txt -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/trash/original.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/trash/original.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/trash/rtl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/trash/rtl.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/tutorial.txt -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/wfmo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/wfmo.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy/test/windows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy/test/windows.hpp -------------------------------------------------------------------------------- /base/lockfree/relacy/relacy_shims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/relacy_shims.h -------------------------------------------------------------------------------- /base/lockfree/relacy/spmchash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/lockfree/relacy/spmchash.cpp -------------------------------------------------------------------------------- /base/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/log.cpp -------------------------------------------------------------------------------- /base/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/log.h -------------------------------------------------------------------------------- /base/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/thread.cpp -------------------------------------------------------------------------------- /base/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/thread.h -------------------------------------------------------------------------------- /base/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/threadpool.cpp -------------------------------------------------------------------------------- /base/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/base/threadpool.h -------------------------------------------------------------------------------- /example/NTP/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/NTP/makefile -------------------------------------------------------------------------------- /example/NTP/roundtrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/NTP/roundtrip.cpp -------------------------------------------------------------------------------- /example/benchmark/buffer_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/buffer_Makefile -------------------------------------------------------------------------------- /example/benchmark/buffer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/buffer_test.cpp -------------------------------------------------------------------------------- /example/benchmark/libmuduo_base.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/libmuduo_base.a -------------------------------------------------------------------------------- /example/benchmark/libmuduo_net.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/libmuduo_net.a -------------------------------------------------------------------------------- /example/benchmark/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/makefile -------------------------------------------------------------------------------- /example/benchmark/muduo_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/muduo_test.cpp -------------------------------------------------------------------------------- /example/benchmark/pingpongCli_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/pingpongCli_Makefile -------------------------------------------------------------------------------- /example/benchmark/pingpongSer_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/pingpongSer_Makefile -------------------------------------------------------------------------------- /example/benchmark/pingpong_bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/pingpong_bench.cpp -------------------------------------------------------------------------------- /example/benchmark/pingpong_clinet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/pingpong_clinet.cpp -------------------------------------------------------------------------------- /example/benchmark/pingpong_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/pingpong_server.cpp -------------------------------------------------------------------------------- /example/benchmark/pinpong_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/pinpong_Makefile -------------------------------------------------------------------------------- /example/benchmark/systemtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/systemtime.cpp -------------------------------------------------------------------------------- /example/benchmark/systemtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/benchmark/systemtime.h -------------------------------------------------------------------------------- /example/chargen/Makefile_ChargenClient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/chargen/Makefile_ChargenClient -------------------------------------------------------------------------------- /example/chargen/Makefile_ChargenServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/chargen/Makefile_ChargenServer -------------------------------------------------------------------------------- /example/chargen/chargen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/chargen/chargen.cpp -------------------------------------------------------------------------------- /example/chargen/chargen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/chargen/chargen.h -------------------------------------------------------------------------------- /example/chargen/chargen_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/chargen/chargen_client.cpp -------------------------------------------------------------------------------- /example/chargen/chargen_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/chargen/chargen_server.cpp -------------------------------------------------------------------------------- /example/chat/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/chat/client.cpp -------------------------------------------------------------------------------- /example/chat/client_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/chat/client_Makefile -------------------------------------------------------------------------------- /example/chat/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/chat/codec.h -------------------------------------------------------------------------------- /example/chat/loadtest.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/chat/server_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/chat/server_Makefile -------------------------------------------------------------------------------- /example/chat/server_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/chat/server_thread.cpp -------------------------------------------------------------------------------- /example/chat/server_threadlocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/chat/server_threadlocal.cpp -------------------------------------------------------------------------------- /example/chat/serverlocal_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/chat/serverlocal_Makefile -------------------------------------------------------------------------------- /example/daytime/daytime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/daytime/daytime.cpp -------------------------------------------------------------------------------- /example/daytime/daytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/daytime/daytime.h -------------------------------------------------------------------------------- /example/daytime/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/daytime/main.cpp -------------------------------------------------------------------------------- /example/daytime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/daytime/makefile -------------------------------------------------------------------------------- /example/echo/echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/echo/echo.cpp -------------------------------------------------------------------------------- /example/echo/echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/echo/echo.h -------------------------------------------------------------------------------- /example/echo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/echo/main.cpp -------------------------------------------------------------------------------- /example/echo/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/echo/makefile -------------------------------------------------------------------------------- /example/filetransfer/Makefile1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/filetransfer/Makefile1 -------------------------------------------------------------------------------- /example/filetransfer/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/filetransfer/Makefile2 -------------------------------------------------------------------------------- /example/filetransfer/client_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/filetransfer/client_Makefile -------------------------------------------------------------------------------- /example/filetransfer/download1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/filetransfer/download1.cpp -------------------------------------------------------------------------------- /example/filetransfer/download2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/filetransfer/download2.cpp -------------------------------------------------------------------------------- /example/filetransfer/filetransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/filetransfer/filetransfer.cpp -------------------------------------------------------------------------------- /example/filetransfer/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/filetransfer/test -------------------------------------------------------------------------------- /example/idleconnection/echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/idleconnection/echo.cpp -------------------------------------------------------------------------------- /example/idleconnection/echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/idleconnection/echo.h -------------------------------------------------------------------------------- /example/idleconnection/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/idleconnection/main.cpp -------------------------------------------------------------------------------- /example/idleconnection/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/idleconnection/makefile -------------------------------------------------------------------------------- /example/lockfree/.server_threadpool.cpp.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/lockfree/.server_threadpool.cpp.swp -------------------------------------------------------------------------------- /example/lockfree/lockfree_echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/lockfree/lockfree_echo.cpp -------------------------------------------------------------------------------- /example/lockfree/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/lockfree/makefile -------------------------------------------------------------------------------- /example/lockfree/sudoku/multiloop_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/lockfree/sudoku/multiloop_Makefile -------------------------------------------------------------------------------- /example/lockfree/sudoku/multiloop_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/lockfree/sudoku/multiloop_server -------------------------------------------------------------------------------- /example/lockfree/sudoku/server_threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/lockfree/sudoku/server_threadpool.cpp -------------------------------------------------------------------------------- /example/lockfree/sudoku/sever_multiloop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/lockfree/sudoku/sever_multiloop.cpp -------------------------------------------------------------------------------- /example/lockfree/sudoku/sever_multiloop.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/lockfree/sudoku/sever_multiloop.o -------------------------------------------------------------------------------- /example/lockfree/sudoku/sudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/lockfree/sudoku/sudoku.cpp -------------------------------------------------------------------------------- /example/lockfree/sudoku/sudoku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/lockfree/sudoku/sudoku.h -------------------------------------------------------------------------------- /example/lockfree/sudoku/sudoku_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/lockfree/sudoku/sudoku_server -------------------------------------------------------------------------------- /example/lockfree/sudoku/threadpool_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/lockfree/sudoku/threadpool_Makefile -------------------------------------------------------------------------------- /example/maxconnection/echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/maxconnection/echo.cpp -------------------------------------------------------------------------------- /example/maxconnection/echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/maxconnection/echo.h -------------------------------------------------------------------------------- /example/maxconnection/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/maxconnection/main.cpp -------------------------------------------------------------------------------- /example/maxconnection/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/maxconnection/makefile -------------------------------------------------------------------------------- /example/other/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/other/client.cpp -------------------------------------------------------------------------------- /example/other/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/other/codec.h -------------------------------------------------------------------------------- /example/other/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/other/makefile -------------------------------------------------------------------------------- /example/other/qq_server_threaded_efficient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/other/qq_server_threaded_efficient.cpp -------------------------------------------------------------------------------- /example/sudoku/multiloop_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/sudoku/multiloop_Makefile -------------------------------------------------------------------------------- /example/sudoku/server_threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/sudoku/server_threadpool.cpp -------------------------------------------------------------------------------- /example/sudoku/sever_multiloop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/sudoku/sever_multiloop.cpp -------------------------------------------------------------------------------- /example/sudoku/sudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/sudoku/sudoku.cpp -------------------------------------------------------------------------------- /example/sudoku/sudoku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/sudoku/sudoku.h -------------------------------------------------------------------------------- /example/sudoku/threadpool_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/sudoku/threadpool_Makefile -------------------------------------------------------------------------------- /example/time/client_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/time/client_Makefile -------------------------------------------------------------------------------- /example/time/kimg_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/time/kimg_time.cpp -------------------------------------------------------------------------------- /example/time/kimg_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/time/kimg_time.h -------------------------------------------------------------------------------- /example/time/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/time/makefile -------------------------------------------------------------------------------- /example/time/time_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/time/time_client.cpp -------------------------------------------------------------------------------- /example/time/time_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/example/time/time_server.cpp -------------------------------------------------------------------------------- /net/Acceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Acceptor.cpp -------------------------------------------------------------------------------- /net/Acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Acceptor.h -------------------------------------------------------------------------------- /net/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Buffer.cpp -------------------------------------------------------------------------------- /net/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Buffer.h -------------------------------------------------------------------------------- /net/Callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Callbacks.h -------------------------------------------------------------------------------- /net/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Channel.cpp -------------------------------------------------------------------------------- /net/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Channel.h -------------------------------------------------------------------------------- /net/CircularBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/CircularBuffer.cpp -------------------------------------------------------------------------------- /net/CircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/CircularBuffer.h -------------------------------------------------------------------------------- /net/Connector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Connector.cpp -------------------------------------------------------------------------------- /net/Connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Connector.h -------------------------------------------------------------------------------- /net/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Endian.h -------------------------------------------------------------------------------- /net/EventLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/EventLoop.cpp -------------------------------------------------------------------------------- /net/EventLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/EventLoop.h -------------------------------------------------------------------------------- /net/EventLoopThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/EventLoopThread.cpp -------------------------------------------------------------------------------- /net/EventLoopThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/EventLoopThread.h -------------------------------------------------------------------------------- /net/EventLoopThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/EventLoopThreadPool.cpp -------------------------------------------------------------------------------- /net/EventLoopThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/EventLoopThreadPool.h -------------------------------------------------------------------------------- /net/InetAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/InetAddress.cpp -------------------------------------------------------------------------------- /net/InetAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/InetAddress.h -------------------------------------------------------------------------------- /net/Poller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Poller.cpp -------------------------------------------------------------------------------- /net/Poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Poller.h -------------------------------------------------------------------------------- /net/Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Socket.cpp -------------------------------------------------------------------------------- /net/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Socket.h -------------------------------------------------------------------------------- /net/SocketOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/SocketOps.cpp -------------------------------------------------------------------------------- /net/SocketOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/SocketOps.h -------------------------------------------------------------------------------- /net/TcpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/TcpClient.cpp -------------------------------------------------------------------------------- /net/TcpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/TcpClient.h -------------------------------------------------------------------------------- /net/TcpConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/TcpConnection.cpp -------------------------------------------------------------------------------- /net/TcpConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/TcpConnection.h -------------------------------------------------------------------------------- /net/TcpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/TcpServer.cpp -------------------------------------------------------------------------------- /net/TcpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/TcpServer.h -------------------------------------------------------------------------------- /net/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Timer.cpp -------------------------------------------------------------------------------- /net/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/Timer.h -------------------------------------------------------------------------------- /net/TimerId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/TimerId.h -------------------------------------------------------------------------------- /net/TimerQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/TimerQueue.cpp -------------------------------------------------------------------------------- /net/TimerQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/TimerQueue.h -------------------------------------------------------------------------------- /net/anyone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/anyone.h -------------------------------------------------------------------------------- /net/boilerplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/boilerplate.cpp -------------------------------------------------------------------------------- /net/boilerplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/boilerplate.h -------------------------------------------------------------------------------- /net/http/HttpContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/http/HttpContext.h -------------------------------------------------------------------------------- /net/http/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/http/HttpRequest.h -------------------------------------------------------------------------------- /net/http/HttpResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/http/HttpResponse.cpp -------------------------------------------------------------------------------- /net/http/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/http/HttpResponse.h -------------------------------------------------------------------------------- /net/http/HttpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/http/HttpServer.cpp -------------------------------------------------------------------------------- /net/http/HttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/http/HttpServer.h -------------------------------------------------------------------------------- /net/inspect/Inspector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/inspect/Inspector.cpp -------------------------------------------------------------------------------- /net/inspect/Inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/inspect/Inspector.h -------------------------------------------------------------------------------- /net/inspect/ProcessInspector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/inspect/ProcessInspector.cpp -------------------------------------------------------------------------------- /net/inspect/ProcessInspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/inspect/ProcessInspector.h -------------------------------------------------------------------------------- /net/poller/DefaultPoller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/poller/DefaultPoller.cpp -------------------------------------------------------------------------------- /net/poller/EPollPoller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/poller/EPollPoller.cpp -------------------------------------------------------------------------------- /net/poller/EPollPoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/poller/EPollPoller.h -------------------------------------------------------------------------------- /net/poller/PollPoller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/poller/PollPoller.cpp -------------------------------------------------------------------------------- /net/poller/PollPoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimg-bo/kimgbo/HEAD/net/poller/PollPoller.h --------------------------------------------------------------------------------