Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 7f15be7b authored by gsell's avatar gsell
Browse files

Merge branch '414-cleanup-remove-ippl_directio' into 'master'

Resolve "cleanup: remove IPPL_DIRECTIO"

Closes #414

See merge request !231
parents a94e99de fcb8c428
No related branches found
No related tags found
1 merge request!231Resolve "cleanup: remove IPPL_DIRECTIO"
...@@ -130,7 +130,6 @@ int IpplInfo::ChunkSize = 512*1024; // 512K == 64K doubles ...@@ -130,7 +130,6 @@ int IpplInfo::ChunkSize = 512*1024; // 512K == 64K doubles
bool IpplInfo::PerSMPParallelIO = false; bool IpplInfo::PerSMPParallelIO = false;
bool IpplInfo::offsetStorage = false; bool IpplInfo::offsetStorage = false;
bool IpplInfo::extraCompressChecks = false; bool IpplInfo::extraCompressChecks = false;
bool IpplInfo::useDirectIO = false;
///////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////
// print out current state to the given output stream // print out current state to the given output stream
...@@ -160,10 +159,6 @@ std::ostream& operator<<(std::ostream& o, const IpplInfo&) { ...@@ -160,10 +159,6 @@ std::ostream& operator<<(std::ostream& o, const IpplInfo&) {
o << " Retransmit messages on error (only if checkums on)? "; o << " Retransmit messages on error (only if checkums on)? ";
o << IpplInfo::retransmit() << "\n"; o << IpplInfo::retransmit() << "\n";
#ifdef IPPL_DIRECTIO
o << " Use Direct-IO? " << IpplInfo::useDirectIO << "\n";
#endif
o << " Elapsed wall-clock time (in seconds): "; o << " Elapsed wall-clock time (in seconds): ";
o << IpplInfo::Stats->getTime().clock_time() << "\n"; o << IpplInfo::Stats->getTime().clock_time() << "\n";
o << " Elapsed CPU-clock time (in seconds) : "; o << " Elapsed CPU-clock time (in seconds) : ";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment