HPCToolkit
cskiplist_defs.h
Go to the documentation of this file.
1 // * BeginRiceCopyright *****************************************************
2 //
3 // $HeadURL$
4 // $Id$
5 //
6 // --------------------------------------------------------------------------
7 // Part of HPCToolkit (hpctoolkit.org)
8 //
9 // Information about sources of support for research and development of
10 // HPCToolkit is at 'hpctoolkit.org' and in 'README.Acknowledgments'.
11 // --------------------------------------------------------------------------
12 //
13 // Copyright ((c)) 2002-2019, Rice University
14 // All rights reserved.
15 //
16 // Redistribution and use in source and binary forms, with or without
17 // modification, are permitted provided that the following conditions are
18 // met:
19 //
20 // * Redistributions of source code must retain the above copyright
21 // notice, this list of conditions and the following disclaimer.
22 //
23 // * Redistributions in binary form must reproduce the above copyright
24 // notice, this list of conditions and the following disclaimer in the
25 // documentation and/or other materials provided with the distribution.
26 //
27 // * Neither the name of Rice University (RICE) nor the names of its
28 // contributors may be used to endorse or promote products derived from
29 // this software without specific prior written permission.
30 //
31 // This software is provided by RICE and contributors "as is" and any
32 // express or implied warranties, including, but not limited to, the
33 // implied warranties of merchantability and fitness for a particular
34 // purpose are disclaimed. In no event shall RICE or contributors be
35 // liable for any direct, indirect, incidental, special, exemplary, or
36 // consequential damages (including, but not limited to, procurement of
37 // substitute goods or services; loss of use, data, or profits; or
38 // business interruption) however caused and on any theory of liability,
39 // whether in contract, strict liability, or tort (including negligence
40 // or otherwise) arising in any way out of the use of this software, even
41 // if advised of the possibility of such damage.
42 //
43 // ******************************************************* EndRiceCopyright *
44 
45 
46 
47 //******************************************************************************
48 //
49 // File: cskiplist_defs.h
50 // $HeadURL$
51 //
52 // Purpose:
53 // Define data structures for a concurrent skip list.
54 //
55 //******************************************************************************
56 
57 
58 #ifndef __CSKIPLIST_DEFS_H__
59 #define __CSKIPLIST_DEFS_H__
60 
61 #include "mcs-lock.h"
62 #include "pfq-rwlock.h"
63 
64 typedef struct csklnode_s {
65  void *val;
66  int height;
67  volatile bool fully_linked;
68  volatile bool marked;
70  // memory allocated for a node will include space for its vector of pointers
71  struct csklnode_s *nexts[];
72 } csklnode_t;
73 
74 typedef struct cskiplist_s {
81 } cskiplist_t;
82 
83 #endif /* __CSKIPLIST_DEFS_H__ */
volatile bool marked
val_cmp compare
struct csklnode_s * nexts[]
volatile bool fully_linked
pfq_rwlock_t lock
struct cskiplist_s cskiplist_t
val_cmp inrange
int(* val_cmp)(void *lhs, void *rhs)
Definition: generic_val.h:32
csklnode_t * right_sentinel
mcs_lock_t lock
csklnode_t * left_sentinel
struct csklnode_s csklnode_t