The document describes a resilient priority queue data structure that can tolerate up to δ memory corruptions. The priority queue is organized into layers of buffers that shift elements between each other to maintain invariants while inserting or deleting minimum elements. It supports insert and delete-min operations in O(logn + δ) amortized time using O(n + δ) space. The structure was inspired by cache-oblivious priority queues.