├── .clang-format ├── .gitignore ├── .gitmodules ├── .travis.yml ├── .travis ├── check-git-clang-format-output.sh └── git-clang-format ├── LICENSE ├── Makefile ├── README.md ├── doc └── plasma-doxy-config ├── lib └── python │ └── plasma.py ├── setup-env.sh ├── src ├── example.c ├── fling.c ├── fling.h ├── malloc.c ├── malloc.h ├── plasma.h ├── plasma_client.c ├── plasma_client.h ├── plasma_manager.c ├── plasma_manager.h ├── plasma_store.c └── plasma_store.h ├── test ├── manager_tests.c └── test.py └── thirdparty └── dlmalloc.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | *~ 3 | *.pyc 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/check-git-clang-format-output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/.travis/check-git-clang-format-output.sh -------------------------------------------------------------------------------- /.travis/git-clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/.travis/git-clang-format -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/README.md -------------------------------------------------------------------------------- /doc/plasma-doxy-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/doc/plasma-doxy-config -------------------------------------------------------------------------------- /lib/python/plasma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/lib/python/plasma.py -------------------------------------------------------------------------------- /setup-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/setup-env.sh -------------------------------------------------------------------------------- /src/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/src/example.c -------------------------------------------------------------------------------- /src/fling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/src/fling.c -------------------------------------------------------------------------------- /src/fling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/src/fling.h -------------------------------------------------------------------------------- /src/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/src/malloc.c -------------------------------------------------------------------------------- /src/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/src/malloc.h -------------------------------------------------------------------------------- /src/plasma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/src/plasma.h -------------------------------------------------------------------------------- /src/plasma_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/src/plasma_client.c -------------------------------------------------------------------------------- /src/plasma_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/src/plasma_client.h -------------------------------------------------------------------------------- /src/plasma_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/src/plasma_manager.c -------------------------------------------------------------------------------- /src/plasma_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/src/plasma_manager.h -------------------------------------------------------------------------------- /src/plasma_store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/src/plasma_store.c -------------------------------------------------------------------------------- /src/plasma_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/src/plasma_store.h -------------------------------------------------------------------------------- /test/manager_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/test/manager_tests.c -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/test/test.py -------------------------------------------------------------------------------- /thirdparty/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray-project/plasma/HEAD/thirdparty/dlmalloc.c --------------------------------------------------------------------------------