aboutsummaryrefslogtreecommitdiff
blob: 015b1a10c482829ba3609d4750aee223939c0ef7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from pypy.interpreter.mixedmodule import MixedModule
from rpython.rlib.rvmprof import VMProfPlatformUnsupported

class Module(MixedModule):
    """ JitLog the new logging facility """
    appleveldefs = {
    }

    interpleveldefs = {
        'enable': 'interp_jitlog.enable',
        'disable': 'interp_jitlog.disable',
        'JitlogError': 'space.fromcache(interp_jitlog.Cache).w_JitlogError',
    }