2001-05-14
2001-05-14 04:30:46 by Per Hedbor <ph@opera.com>
-
e8dffa81748dd3fa9d39f885cc157784d0c33e63
(10 lines)
(+6/-4)
[
Show
| Annotate
]
Branch: 5.2
I forgot to check these in last thursday.
Rev: server/base_server/configuration.pike:1.430
Rev: server/etc/modules/RXML.pmod/module.pmod:1.153
1:
// A vitual server's main configuration
// Copyright © 1996 - 2000, Roxen IS.
- constant cvs_version = "$Id: configuration.pike,v 1.429 2001/05/07 02:48:33 per Exp $";
+ constant cvs_version = "$Id: configuration.pike,v 1.430 2001/05/14 04:30:46 per Exp $";
#include <module.h>
#include <module_constants.h>
#include <roxen.h>
130: Inside #if defined(AVERAGE_PROFILING)
void add_prof_entry( RequestID id, string k, int hr, int hrv )
{
- if( !profiling_info[id->not_query] )
- profiling_info[id->not_query] = ProfInfo(id->not_query);
- profiling_info[id->not_query]->add( k, hr, hrv );
+ string l = id->not_query;
+ if( has_prefix( k, "find_internal" ) ) l = dirname(l);
+ if( !profiling_info[l] ) profiling_info[l] = ProfInfo(l);
+ profiling_info[l]->add( k, hr, hrv );
}
void avg_prof_enter( string name, string type, RequestID id )