├── LICENSE ├── README.md ├── WORKSPACE ├── common ├── BUILD ├── channel.h ├── defer.h ├── defer_test.cc ├── sysutil.cc ├── sysutil.h ├── types.h ├── unbuffered_channel.h └── unbuffered_channel_test.cc ├── glog.BUILD ├── googletest.BUILD ├── resources └── ThreadStacks.jpg └── threadstacks ├── BUILD ├── signal_handler.cc ├── signal_handler.h └── signal_handler_test.cc /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/WORKSPACE -------------------------------------------------------------------------------- /common/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/common/BUILD -------------------------------------------------------------------------------- /common/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/common/channel.h -------------------------------------------------------------------------------- /common/defer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/common/defer.h -------------------------------------------------------------------------------- /common/defer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/common/defer_test.cc -------------------------------------------------------------------------------- /common/sysutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/common/sysutil.cc -------------------------------------------------------------------------------- /common/sysutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/common/sysutil.h -------------------------------------------------------------------------------- /common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/common/types.h -------------------------------------------------------------------------------- /common/unbuffered_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/common/unbuffered_channel.h -------------------------------------------------------------------------------- /common/unbuffered_channel_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/common/unbuffered_channel_test.cc -------------------------------------------------------------------------------- /glog.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/glog.BUILD -------------------------------------------------------------------------------- /googletest.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/googletest.BUILD -------------------------------------------------------------------------------- /resources/ThreadStacks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/resources/ThreadStacks.jpg -------------------------------------------------------------------------------- /threadstacks/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/threadstacks/BUILD -------------------------------------------------------------------------------- /threadstacks/signal_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/threadstacks/signal_handler.cc -------------------------------------------------------------------------------- /threadstacks/signal_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/threadstacks/signal_handler.h -------------------------------------------------------------------------------- /threadstacks/signal_handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtspot/threadstacks/HEAD/threadstacks/signal_handler_test.cc --------------------------------------------------------------------------------