The Wound-Wait protocol is a deadlock prevention scheme that uses transaction timestamps to resolve resource conflicts. When an older transaction requests a resource held by a younger one, it preempts or 'wounds' the younger, forcing it to abort and restart. Conversely, a younger transaction requesting a resource held by an older one must wait. This age-based hierarchy guarantees that circular wait, a necessary condition for deadlock, cannot occur.
