forked from facebook/wdt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WdtConfig.h
27 lines (23 loc) · 921 Bytes
/
WdtConfig.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// fbcode version (with settings for the platform) of WdtConfig.h.in
// WARNING:
// If you change anything in this file you MUST change WdtConfig.h.in and
// CMakeLists.txt so it stays in sync and generates the correct values
// on (opensource) Linux, MacOS,...
// Never edit this file manually for protocol version or version, edit
// CMakeLists.txt and run build/version_update.tcl instead
#pragma once
#include <fcntl.h>
#define WDT_VERSION_MAJOR 1
#define WDT_VERSION_MINOR 30
#define WDT_VERSION_BUILD 1704260
// Add -fbcode to version str
#define WDT_VERSION_STR "1.30.1704260-fbcode"
// Tie minor and proto version
#define WDT_PROTOCOL_VERSION WDT_VERSION_MINOR
#define HAS_POSIX_FALLOCATE 1
#define HAS_SYNC_FILE_RANGE 1
#define HAS_POSIX_MEMALIGN 1
#define HAS_POSIX_FADVISE 1
#define WDT_SUPPORTS_ODIRECT 1
#define WDT_HAS_SOCKIOS_H 1
// Again do not add new defines here without editing WdtConfig.h.in ...