diff options
Diffstat (limited to 'utils.c')
| -rw-r--r-- | utils.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -192,6 +192,11 @@ int is_interactive_governor(char* governor) { return 0; } +int is_schedutil_governor(char* governor) { + if (strncmp(governor, SCHEDUTIL_GOVERNOR, (strlen(SCHEDUTIL_GOVERNOR) + 1)) == 0) return 1; + return 0; +} + #ifndef INTERACTION_BOOST void interaction(int UNUSED(duration), int UNUSED(num_args), int UNUSED(opt_list[])) { #else |
