| 78 |
78 |
| 79 #ifndef UCX_COMMON_H |
79 #ifndef UCX_COMMON_H |
| 80 #define UCX_COMMON_H |
80 #define UCX_COMMON_H |
| 81 |
81 |
| 82 /** Major UCX version as integer constant. */ |
82 /** Major UCX version as integer constant. */ |
| 83 #define UCX_VERSION_MAJOR 3 |
83 #define UCX_VERSION_MAJOR 4 |
| 84 |
84 |
| 85 /** Minor UCX version as integer constant. */ |
85 /** Minor UCX version as integer constant. */ |
| 86 #define UCX_VERSION_MINOR 1 |
86 #define UCX_VERSION_MINOR 0 |
| 87 |
87 |
| 88 /** Version constant which ensures to increase monotonically. */ |
88 /** Version constant which ensures to increase monotonically. */ |
| 89 #define UCX_VERSION (((UCX_VERSION_MAJOR)<<16)|UCX_VERSION_MINOR) |
89 #define UCX_VERSION (((UCX_VERSION_MAJOR)<<16)|UCX_VERSION_MINOR) |
| 90 |
90 |
| 91 // --------------------------------------------------------------------------- |
91 // --------------------------------------------------------------------------- |