Created
February 26, 2014 02:41
-
-
Save axsddlr/9222512 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright © 2014 Andre "ayysir" Saddler | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
*/ | |
package com.ayysir.paek.helper; | |
public class PaekHelper { | |
public static int latest_version; | |
// Cpu Information | |
public static String[] available_frequencies; | |
public static String[] available_governors; | |
// Cpu Information | |
public static String min_freq; | |
public static String max_freq; | |
public static String screen_on_min; | |
public static String screen_off_max; | |
public static String governor; | |
// FFC | |
public static String[] ffcl; | |
public static String mA; | |
//Multicore | |
public static String [] mps = new String[]{"0", "1", "2"}; | |
//Franco Sound Control | |
public static String[] fksc = new String[]{"0", "1", "2", "3"}; | |
public static String SC; | |
//TCP | |
public static String[] available_tcp_congestion = new String[] {"westwood","reno","bic","cubic","htcp"}; | |
public static String tcp; | |
//IO Scheduler | |
public static String[] available_io_scheduler = new String[] {"noop","deadline","row","cfq","bfq","fiops","sio","test-iosched","zen","vr"}; | |
public static String iosched; | |
public static void reset() { | |
latest_version = 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment