From 1b1b4cebda9ceaa7a2a2b695a32ecb2588045076 Mon Sep 17 00:00:00 2001 From: Rajan Arora Date: Thu, 9 Oct 2008 19:58:30 -0400 Subject: Display source context for error and warning messages (6701) --- session.h | 1 + 1 file changed, 1 insertion(+) (limited to 'session.h') diff --git a/session.h b/session.h index b8bd971a..4746422f 100644 --- a/session.h +++ b/session.h @@ -179,6 +179,7 @@ struct systemtap_session const token* last_token; void print_token (std::ostream& o, const token* tok); void print_error (const semantic_error& e); + void print_error_source (std::ostream&, std::string&, const token* tok); void print_warning (const std::string& w, const token* tok = 0); // reNB: new POD members likely need to be explicitly cleared in the ctor. -- cgit From 06c7e0574aa7781478425d171a885603ad365155 Mon Sep 17 00:00:00 2001 From: Kent Sebastian Date: Fri, 10 Oct 2008 15:40:46 -0400 Subject: Functions implementing cache limiting. --- session.h | 1 + 1 file changed, 1 insertion(+) (limited to 'session.h') diff --git a/session.h b/session.h index 4746422f..a848a8e5 100644 --- a/session.h +++ b/session.h @@ -110,6 +110,7 @@ struct systemtap_session bool use_cache; std::string cache_path; std::string hash_path; + long cache_max; // dwarfless operation bool consult_symtab; -- cgit