]> rtime.felk.cvut.cz Git - linux-conf-perf.git/commitdiff
Remove unused function from utils
authorKarel Kočí <cynerd@email.cz>
Fri, 24 Jul 2015 15:30:17 +0000 (17:30 +0200)
committerKarel Kočí <cynerd@email.cz>
Fri, 24 Jul 2015 15:30:17 +0000 (17:30 +0200)
build_conf_map is not used anywhere. And plan is to change files with which it works. So it doesn't have any sense to keeping it there or even rewriting it.

scripts/utils.py

index 522a68d0ff11e7701827cbbb574365b800e5a8c8..d1382796112d6d68d4b206f9f61b4943944e06bb 100644 (file)
@@ -28,32 +28,6 @@ def build_symbol_map():
                                smap[int(w[0])] = w[1]
 
 
-def build_conf_map():
-       """Generates global variable cmap from config_map_file and config_solved_file.
-       cmap is dictionary containing list ([configuration], bool solved)
-       cmap is rebuild every time this function is called.
-       """
-       global cmap
-       cmap = dict()
-       if os.path.isfile(sf(conf.config_map_file)):
-               with open(sf(conf.config_map_file)) as f:
-                       for ln in f:
-                               w = ln.rstrip().split(sep=':')
-                               cf = list()
-                               for vr in w[1].split(sep=" "):
-                                       if vf[0] == '-':
-                                               cf.append(-1 * int(vf[1:]))
-                                       cf.append(int(vf))
-                               cmap[w[0]] = [w[1], False]
-
-               if os.path.isfile(sf(conf.config_solved_file)):
-                       with open(sf(conf.config_solved_file)) as f:
-                               for ln in f:
-                                       try:
-                                               cmap[ln.rstrip()][1] = True
-                                       except KeyError:
-                                               pass
-
 def callsubprocess(process_name, process, show_output = True,
                return_output = False, env=os.environ, allowed_exit_codes = [0]):
        sprc = subprocess.Popen(process, stdout = subprocess.PIPE, env = env)