mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 06:46:07 +00:00
refactor: move Arena and ArenaMem to memory_defs.h (#26240)
This commit is contained in:
@@ -4,10 +4,12 @@
|
||||
#include "nvim/memfile_defs.h" // IWYU pragma: export
|
||||
|
||||
/// flags for mf_sync()
|
||||
#define MFS_ALL 1 /// also sync blocks with negative numbers
|
||||
#define MFS_STOP 2 /// stop syncing when a character is available
|
||||
#define MFS_FLUSH 4 /// flushed file to disk
|
||||
#define MFS_ZERO 8 /// only write block 0
|
||||
enum {
|
||||
MFS_ALL = 1, ///< also sync blocks with negative numbers
|
||||
MFS_STOP = 2, ///< stop syncing when a character is available
|
||||
MFS_FLUSH = 4, ///< flushed file to disk
|
||||
MFS_ZERO = 8, ///< only write block 0
|
||||
};
|
||||
|
||||
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
||||
# include "memfile.h.generated.h"
|
||||
|
Reference in New Issue
Block a user