implemented a lockfree list

Summary: It's not the fastest for all operations but it's efficient on inserts to front and list traversals. removes are quite slow but it's not important because remove is only used by the garbage collector.

Test Plan: Reason wisely

Reviewers: buda, borko

Differential Revision: https://phabricator.tomicevic.com/D1
This commit is contained in:
Dominik Tomičević 2015-09-22 01:10:47 +02:00
parent 9ae14c36c8
commit 38ec6a10b1

1
cypher/.gitignore vendored
View File

@ -1,6 +1,7 @@
*.o
cypher.cpp
cypher.h
cypher.hpp
parser
cypher.out
parser