Skip to content

Commit

Permalink
Add large page info to bulk create .csv as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
tpn committed Feb 21, 2020
1 parent ef3a75b commit cf45c78
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/PerfectHash/BulkCreateCsv.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,18 @@ Module Name:
Context->FailedAttempts, \
OUTPUT_INT) \
\
ENTRY(TableDataUsesLargePages, \
(Table->Flags.TableDataUsesLargePages != FALSE ? 'Y' : 'N'), \
OUTPUT_CHR) \
\
ENTRY(ValuesArrayUsesLargePages, \
(Table->Flags.ValuesArrayUsesLargePages != FALSE ? 'Y' : 'N'), \
OUTPUT_CHR) \
\
ENTRY(KeysDataUsesLargePages, \
(Keys->Flags.KeysDataUsesLargePages != FALSE ? 'Y' : 'N'), \
OUTPUT_CHR) \
\
ENTRY(GraphRegisterSolvedTsxSuccessCount, \
Context->GraphRegisterSolvedTsxSuccess, \
OUTPUT_INT) \
Expand Down

0 comments on commit cf45c78

Please sign in to comment.