コード例 #1
0
ファイル: Thread.cpp プロジェクト: Wafflespeanut/gecko-dev
bool
js::Thread::Id::operator==(const Id& aOther) const
{
  const PlatformData& self = *platformData();
  const PlatformData& other = *aOther.platformData();
  return (!self.hasThread && !other.hasThread) ||
         (self.hasThread == other.hasThread &&
          pthread_equal(self.ptThread, other.ptThread));
}
コード例 #2
0
ファイル: Thread.cpp プロジェクト: luke-chang/gecko-1
bool
js::Thread::Id::operator==(const Id& aOther) const
{
  return platformData()->id == aOther.platformData()->id;
}