Loading libs/binder/tests/binderRpcTest.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -129,7 +129,7 @@ private: static std::string allocateSocketAddress() { static size_t id = 0; std::string temp = getenv("TMPDIR") ?: "/tmp"; auto ret = temp + "/binderRpcTest_" + std::to_string(id++); auto ret = temp + "/binderRpcTest_" + std::to_string(getpid()) + "_" + std::to_string(id++); unlink(ret.c_str()); return ret; }; Loading Loading
libs/binder/tests/binderRpcTest.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -129,7 +129,7 @@ private: static std::string allocateSocketAddress() { static size_t id = 0; std::string temp = getenv("TMPDIR") ?: "/tmp"; auto ret = temp + "/binderRpcTest_" + std::to_string(id++); auto ret = temp + "/binderRpcTest_" + std::to_string(getpid()) + "_" + std::to_string(id++); unlink(ret.c_str()); return ret; }; Loading