From 444cc657225e5509c87b5df8ec0bacddfdfee7d2 Mon Sep 17 00:00:00 2001 From: Bernd Machenschalk Date: Tue, 6 Nov 2012 11:57:21 +0100 Subject: [PATCH] make extern declaration of fpops_to_credit() match implementation --- sched/credit.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sched/credit.h b/sched/credit.h index c410e20aa6..1af496cb43 100644 --- a/sched/credit.h +++ b/sched/credit.h @@ -38,9 +38,9 @@ #define AV_AVG_WEIGHT .001 #define AV_AVG_LIMIT 10 -extern double fpops_to_credit(double fpops, double intops); +extern double fpops_to_credit(double fpops); // credit that should be granted for a given number of - // floating-point and integer ops + // floating-point ops extern double cpu_time_to_credit(double cpu_time, double cpu_flops_sec); extern int grant_credit(DB_HOST& host, double start_time, double credit);