From: Chanwoo Choi Date: Wed, 8 Mar 2023 21:01:48 +0000 (+0900) Subject: pass: resmon: Add RESMON_TIMER_UNKNOWN enum X-Git-Tag: accepted/tizen/unified/20230315.093502~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=84ef5f543e5e41c3ceb43dd83b6a504b50204a94;p=platform%2Fcore%2Fsystem%2Fpass.git pass: resmon: Add RESMON_TIMER_UNKNOWN enum In order to test the invalid case of pass-resmon unittest, add RESMON_TIMER_UNKNOWN enum. Change-Id: I64d3f21fb6a7ee95c250d134b75310d105cd6f48 Signed-off-by: Chanwoo Choi --- diff --git a/src/pass/pass-resmon.h b/src/pass/pass-resmon.h index f6c88e4..99d3984 100644 --- a/src/pass/pass-resmon.h +++ b/src/pass/pass-resmon.h @@ -43,6 +43,8 @@ * @breif Represents the type of timer-based resource monitor. */ enum resmon_timer_type { + /** Unknown timer type */ + RESMON_TIMER_UNKNOWN = 0, /** Periodic timer with the regular interval */ RESMON_TIMER_PERIODIC = 1, /** Oneshot timer after the interval */