summaryrefslogtreecommitdiff
path: root/extractor/run_extractor.cc
diff options
context:
space:
mode:
authorPaul Baltescu <pauldb89@gmail.com>2013-02-22 16:50:29 +0000
committerPaul Baltescu <pauldb89@gmail.com>2013-02-22 16:50:29 +0000
commitbb79fdc140a5593124d3943769a644c6cc3d87f6 (patch)
treed98608bc7b8dd23069b7683ec50ddf7d337abc42 /extractor/run_extractor.cc
parent5f08d976c857c1353ac623f0adbbe5597800d644 (diff)
Memory analysis pointless code.
Diffstat (limited to 'extractor/run_extractor.cc')
-rw-r--r--extractor/run_extractor.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/extractor/run_extractor.cc b/extractor/run_extractor.cc
index 38f10a5f..2b01e832 100644
--- a/extractor/run_extractor.cc
+++ b/extractor/run_extractor.cc
@@ -31,6 +31,14 @@ namespace fs = boost::filesystem;
namespace po = boost::program_options;
using namespace std;
+void my_pause() {
+ cerr << "pausing..." << endl;
+ for (int i = 0; i < 10000000; ++i) {
+ cerr << endl;
+ }
+ cerr << "end pause" << endl;
+}
+
int main(int argc, char** argv) {
// TODO(pauldb): Also take arguments from config file.
po::options_description desc("Command line options");