benchmark silo added
[c11concurrency-benchmarks.git] / silo / masstree / str.cc
1 /* Masstree
2  * Eddie Kohler, Yandong Mao, Robert Morris
3  * Copyright (c) 2012-2013 President and Fellows of Harvard College
4  * Copyright (c) 2012-2013 Massachusetts Institute of Technology
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, subject to the conditions
9  * listed in the Masstree LICENSE file. These conditions include: you must
10  * preserve this copyright notice, and you cannot mention the copyright
11  * holders in advertising related to the Software without their permission.
12  * The Software is provided WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED. This
13  * notice is a summary of the Masstree LICENSE file; the license in that file
14  * is legally binding.
15  */
16 #include "str.hh"
17 namespace lcdf {
18
19 const Str Str::maxkey("\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
20                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
21                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
22                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
23                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
24                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
25                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
26                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
27                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
28                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
29                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
30                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
31                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
32                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
33                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
34                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
35                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
36                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
37                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
38                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
39                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
40                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
41                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
42                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
43                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
44                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
45                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
46                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
47                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
48                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
49                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
50                       "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
51                       "\xFF", 257);
52
53 } // namespace lcdf