]> git.proxmox.com Git - libgit2.git/blobdiff - src/commit_list.h
New upstream version 1.3.0+dfsg.1
[libgit2.git] / src / commit_list.h
index a6967bceff22b5e4cc567ab4c33e7827c454428e..aad39f3513b40f10d1589972c39eecb345f246d8 100644 (file)
@@ -7,6 +7,8 @@
 #ifndef INCLUDE_commit_list_h__
 #define INCLUDE_commit_list_h__
 
+#include "common.h"
+
 #include "git2/oid.h"
 
 #define PARENT1  (1 << 0)
 typedef struct git_commit_list_node {
        git_oid oid;
        int64_t time;
+       uint32_t generation;
        unsigned int seen:1,
                         uninteresting:1,
                         topo_delay:1,
                         parsed:1,
+                        added:1,
                         flags : FLAG_BITS;
 
-       unsigned short in_degree;
-       unsigned short out_degree;
+       uint16_t in_degree;
+       uint16_t out_degree;
 
        struct git_commit_list_node **parents;
 } git_commit_list_node;
@@ -42,6 +46,7 @@ typedef struct git_commit_list {
 } git_commit_list;
 
 git_commit_list_node *git_commit_list_alloc_node(git_revwalk *walk);
+int git_commit_list_generation_cmp(const void *a, const void *b);
 int git_commit_list_time_cmp(const void *a, const void *b);
 void git_commit_list_free(git_commit_list **list_p);
 git_commit_list *git_commit_list_insert(git_commit_list_node *item, git_commit_list **list_p);