blob 385d2fb139a63127c4654bdb5fe25320ba9fc74d 804 bytes (raw)
name: reftable/pq.h # note: path name is non-authoritative(*)
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
| | /*
Copyright 2020 Google LLC
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file or at
https://developers.google.com/open-source/licenses/bsd
*/
#ifndef PQ_H
#define PQ_H
#include "record.h"
struct pq_entry {
int index;
struct reftable_record rec;
};
struct merged_iter_pqueue {
struct pq_entry *heap;
size_t len;
size_t cap;
};
struct pq_entry merged_iter_pqueue_top(struct merged_iter_pqueue pq);
int merged_iter_pqueue_is_empty(struct merged_iter_pqueue pq);
void merged_iter_pqueue_check(struct merged_iter_pqueue pq);
struct pq_entry merged_iter_pqueue_remove(struct merged_iter_pqueue *pq);
void merged_iter_pqueue_add(struct merged_iter_pqueue *pq, struct pq_entry e);
void merged_iter_pqueue_release(struct merged_iter_pqueue *pq);
#endif
|
debug log:
solving 385d2fb139a6 ...
found 385d2fb139a6 in https://public-inbox.org/git/0a6119d910a3f83e6c9c421acd1316b496e6612b.1618255553.git.gitgitgadget@gmail.com/ ||
https://public-inbox.org/git/84578b666a40068c739d8131ddcd53136d83719b.1618832277.git.gitgitgadget@gmail.com/ ||
https://public-inbox.org/git/28aa69f7bbcba22b67d7a0300ce62538e3189b95.1615580397.git.gitgitgadget@gmail.com/
applying [1/1] https://public-inbox.org/git/0a6119d910a3f83e6c9c421acd1316b496e6612b.1618255553.git.gitgitgadget@gmail.com/
diff --git a/reftable/pq.h b/reftable/pq.h
new file mode 100644
index 000000000000..385d2fb139a6
Checking patch reftable/pq.h...
Applied patch reftable/pq.h cleanly.
skipping https://public-inbox.org/git/84578b666a40068c739d8131ddcd53136d83719b.1618832277.git.gitgitgadget@gmail.com/ for 385d2fb139a6
skipping https://public-inbox.org/git/28aa69f7bbcba22b67d7a0300ce62538e3189b95.1615580397.git.gitgitgadget@gmail.com/ for 385d2fb139a6
index at:
100644 385d2fb139a63127c4654bdb5fe25320ba9fc74d reftable/pq.h
(*) Git path names are given by the tree(s) the blob belongs to.
Blobs themselves have no identifier aside from the hash of its contents.^
Code repositories for project(s) associated with this public inbox
https://80x24.org/mirrors/git.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).