summaryrefslogtreecommitdiffstats
path: root/default.nix
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-12-21 13:17:38 +0200
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-12-21 13:17:38 +0200
commitaaa4d8c32331cbb6aad933f381b5b0ce3ffd0ed4 (patch)
treefe9c707aa3c3baff7dfb83971c7d2f36a3d24e70 /default.nix
parentf11044b5eb9cf42cc71930b567b7566f1293a936 (diff)
Prevent emoji selector for closing
fixes #176
Diffstat (limited to 'default.nix')
0 files changed, 0 insertions, 0 deletions
ion.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#
# gdb helper commands and functions for Linux kernel debugging
#
#  loader module
#
# Copyright (c) Siemens AG, 2012, 2013
#
# Authors:
#  Jan Kiszka <jan.kiszka@siemens.com>
#
# This work is licensed under the terms of the GNU GPL version 2.
#

import os

sys.path.insert(0, os.path.dirname(__file__) + "/scripts/gdb")

try:
    gdb.parse_and_eval("0")
    gdb.execute("", to_string=True)
except:
    gdb.write("NOTE: gdb 7.2 or later required for Linux helper scripts to "
              "work.\n")
else:
    import linux.utils
    import linux.symbols
    import linux.modules
    import linux.dmesg
    import linux.tasks
    import linux.config
    import linux.cpus
    import linux.lists
    import linux.rbtree
    import linux.proc
    import linux.constants
    import linux.timerlist
    import linux.clk
    import linux.genpd
    import linux.device