forked from LPD-EPFL/ASCYLIB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
queue-lock.h
75 lines (67 loc) · 2.03 KB
/
queue-lock.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
* File: skiplist-lock.h
* Author: Vasileios Trigonakis <[email protected]>
* Description:
* skiplist-lock.h is part of ASCYLIB
*
* Copyright (c) 2014 Vasileios Trigonakis <[email protected]>,
* Tudor David <[email protected]>
* Distributed Programming Lab (LPD), EPFL
*
* ASCYLIB is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, version 2
* of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#include <assert.h>
#include <getopt.h>
#include <limits.h>
#include <pthread.h>
#include <signal.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/time.h>
#include <time.h>
#include <stdint.h>
#include "common.h"
#include <atomic_ops.h>
#include "lock_if.h"
#include "ssmem.h"
#include "optik.h"
extern unsigned int global_seed;
extern __thread ssmem_allocator_t* alloc;
typedef struct queue_node
{
skey_t key;
sval_t val;
struct queue_node* next;
} queue_node_t;
typedef ALIGNED(CACHE_LINE_SIZE) struct queue
{
queue_node_t* head;
ptlock_t head_lock;
uint8_t padding1[CACHE_LINE_SIZE - sizeof(queue_node_t*) - sizeof(ptlock_t)];
queue_node_t* tail;
ptlock_t tail_lock;
uint8_t padding2[CACHE_LINE_SIZE - sizeof(queue_node_t*) - sizeof(ptlock_t)];
} queue_t;
int floor_log_2(unsigned int n);
/*
* Create a new node without setting its next fields.
*/
queue_node_t* queue_new_simple_node(skey_t key, sval_t val, int toplevel, int transactional);
/*
* Create a new node with its next field.
* If next=NULL, then this create a tail node.
*/
queue_node_t *queue_new_node(skey_t key, sval_t val, queue_node_t *next);
void queue_delete_node(queue_node_t* n);
queue_t* queue_new();
void queue_delete(queue_t* qu);
int queue_size(queue_t* cqu);