Something went wrong on our end
Select Git revision
bluetooth.te
-
dcashman authored
Move the remaining services from tmp_system_server_service to appropriate attributes and remove tmp_system_server and associated logging: registry restrictions rttmanager scheduling_policy search sensorservice serial servicediscovery statusbar task textservices telecom_service trust_service uimode updatelock usagestats usb user vibrator voiceinteraction wallpaper webviewupdate wifip2p wifi window Bug: 18106000 Change-Id: Ia0a6d47099d82c53ba403af394537db6fbc71ca0
dcashman authoredMove the remaining services from tmp_system_server_service to appropriate attributes and remove tmp_system_server and associated logging: registry restrictions rttmanager scheduling_policy search sensorservice serial servicediscovery statusbar task textservices telecom_service trust_service uimode updatelock usagestats usb user vibrator voiceinteraction wallpaper webviewupdate wifip2p wifi window Bug: 18106000 Change-Id: Ia0a6d47099d82c53ba403af394537db6fbc71ca0
all.py 1.04 KiB
from src.allocator import Allocator as Alloc
from src.allocator import Allocator_Sources as Alloc_Src
import src.allocators.glibcs
from src.allocators.tcmalloc import tcmalloc, tcmalloc_nofs
from src.allocators.jemalloc import jemalloc
from src.allocators.hoard import hoard
from src.allocators.supermalloc import supermalloc
from src.allocators.llalloc import llalloc
mesh = Alloc("Mesh", sources=Alloc_Src("Mesh",
retrieve_cmds=["git clone https://github.com/plasma-umass/Mesh"],
reset_cmds=["git stash"]),
LD_PRELOAD="{srcdir}/libmesh.so",
build_cmds=["cd {srcdir}; git submodule update --init",
"cd {srcdir}; ./configure",
"cd {srcdir}; make -j 4",
"mkdir {dir}"])
allocators = [*src.allocators.glibcs.allocators, tcmalloc, tcmalloc_nofs,
jemalloc, hoard, mesh, supermalloc, llalloc]