Linux lockless linked list implementation

Change-Id: I8bd6ee989cecac269b55b3a0ff10cf8543629001
This commit is contained in:
Balazs Gerofi
2019-04-02 10:50:24 +09:00
parent 0d902872a1
commit 0cf89c5682
4 changed files with 335 additions and 1 deletions

View File

@ -17,6 +17,10 @@
#define BITS_PER_BYTE 8
#define BITS_PER_LONG (sizeof(long) * BITS_PER_BYTE)
#ifndef __ASSEMBLY__
typedef _Bool bool;
#endif // __ASSEMBLY__
#include <ihk/types.h>
#endif