sync code with last improvements from OpenBSD
This commit is contained in:
parent
68fa196282
commit
9c49429a7e
4431 changed files with 2761157 additions and 1135565 deletions
|
@ -25,7 +25,7 @@
|
|||
|
||||
#define PRESENT_NAME "Present"
|
||||
#define PRESENT_MAJOR 1
|
||||
#define PRESENT_MINOR 2
|
||||
#define PRESENT_MINOR 3
|
||||
|
||||
#define PresentNumberErrors 0
|
||||
#define PresentNumberEvents 0
|
||||
|
@ -45,11 +45,15 @@
|
|||
#define PresentOptionCopy (1 << 1)
|
||||
#define PresentOptionUST (1 << 2)
|
||||
#define PresentOptionSuboptimal (1 << 3)
|
||||
#define PresentOptionAsyncMayTear (1 << 4)
|
||||
|
||||
#define PresentAllOptions (PresentOptionAsync | \
|
||||
PresentOptionCopy | \
|
||||
PresentOptionUST | \
|
||||
PresentOptionSuboptimal)
|
||||
PresentOptionSuboptimal | \
|
||||
PresentOptionAsyncMayTear)
|
||||
|
||||
#define PresentAllAsyncOptions (PresentOptionAsync | PresentOptionAsyncMayTear)
|
||||
|
||||
/* Present capabilities */
|
||||
|
||||
|
@ -57,10 +61,14 @@
|
|||
#define PresentCapabilityAsync 1
|
||||
#define PresentCapabilityFence 2
|
||||
#define PresentCapabilityUST 4
|
||||
#define PresentCapabilityAsyncMayTear 8
|
||||
|
||||
#define PresentAllCapabilities (PresentCapabilityAsync | \
|
||||
PresentCapabilityFence | \
|
||||
PresentCapabilityUST)
|
||||
PresentCapabilityUST | \
|
||||
PresentCapabilityAsyncMayTear)
|
||||
|
||||
#define PresentAllAsyncCapabilities (PresentCapabilityAsync | PresentCapabilityAsyncMayTear)
|
||||
|
||||
/* Events */
|
||||
#define PresentConfigureNotify 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue