support ip fragmentation
This commit is contained in:
parent
e2955971a3
commit
fecdbd6b17
9 changed files with 374 additions and 98 deletions
|
@ -104,6 +104,13 @@ grub_priority_queue_top (grub_priority_queue_t pq)
|
|||
return element (pq, 0);
|
||||
}
|
||||
|
||||
void
|
||||
grub_priority_queue_destroy (grub_priority_queue_t pq)
|
||||
{
|
||||
grub_free (pq->els);
|
||||
grub_free (pq);
|
||||
}
|
||||
|
||||
grub_priority_queue_t
|
||||
grub_priority_queue_new (grub_size_t elsize,
|
||||
grub_comparator_t cmp)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue