From 56b7d78a034187f66e08f3b3e2de55bd878cf9b5 Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Sat, 18 Nov 2006 16:55:13 +0000 Subject: Micro-Optimisation decreasing initial parsing time by 10% python () {} and python __anonymous () {} are as the same says functions without a name. They get executed when the main bb file is completely parsed. This is used to set information like FILESDIR. This is a python method so it gets evaled which means compiled and executed a lot of times. By moving the code of the anonfunc into a proper method this is only compiled once. The result is is the 10% speed up when parsing. Reindent anonfuncs and new defs without tabs and four spaces --- packages/lockstat/lockstat_1.4.10.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/lockstat') diff --git a/packages/lockstat/lockstat_1.4.10.bb b/packages/lockstat/lockstat_1.4.10.bb index 7c6c84dd01..61f4a61b0d 100644 --- a/packages/lockstat/lockstat_1.4.10.bb +++ b/packages/lockstat/lockstat_1.4.10.bb @@ -10,9 +10,9 @@ export KERNEL_SOURCE = ${@base_read_file('${STAGING_KERNEL_DIR}/kernel-source')} CFLAGS += " -I${KERNEL_SOURCE}/include" python () { -# NOTE: any target machines with kernels supporting spinlock metering should -# check the MACHINE variable here to prevent the SkipPackage. - raise bb.parse.SkipPackage("The target machine's kernel does not appear able to use spinlock metering.") + # NOTE: any target machines with kernels supporting spinlock metering should + # check the MACHINE variable here to prevent the SkipPackage. + raise bb.parse.SkipPackage("The target machine's kernel does not appear able to use spinlock metering.") } do_compile () { -- cgit v1.2.3