Severity: 8192
Message: Function create_function() is deprecated
Filename: geshi/geshi.php
Line Number: 4698
Backtrace:
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once
/* * Copyright 2014, General Dynamics C4 Systems * * This software may be distributed and modified according to the terms of * the GNU General Public License version 2. Note that NO WARRANTY is provided. * See "LICENSE_GPLv2.txt" for details. * * @TAG(GD_GPL) */ #include <types.h> #include <machine/registerset.h> #include <arch/machine.h> #include <plat/machine/hardware.h> word_t PURE getRestartPC(tcb_t *thread) { return getRegister(thread, FaultIP); } void setNextPC(tcb_t *thread, word_t v) { setRegister(thread, NEXT_PC_REG, v); } BOOT_CODE int get_num_avail_p_regs(void) { return sizeof(avail_p_regs) / sizeof(p_region_t); } BOOT_CODE int get_num_dev_p_regs(void) { return sizeof(dev_p_regs) / sizeof(p_region_t); } BOOT_CODE p_region_t get_dev_p_reg(word_t i) { return dev_p_regs[i]; } BOOT_CODE const p_region_t *get_avail_p_regs(void) { return (const p_region_t *) avail_p_regs; } BOOT_CODE void map_kernel_devices(void) { asm volatile ("b ."); for (int i = 0; i < ARRAY_SIZE(kernel_devices); i++) { asm volatile ("b ."); map_kernel_frame(kernel_devices[i].paddr, kernel_devices[i].pptr, VMKernelOnly, vm_attributes_new(kernel_devices[i].armExecuteNever, false, false)); } }