A PHP Error was encountered

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

Untitled - Stikked
From Fiery Sheep, 9 Years ago, written in C.
Embed
  1. #ifndef _KERNEL_EVENTS_INTERNAL_H
  2. #define _KERNEL_EVENTS_INTERNAL_H
  3.  
  4. #include <linux/hardirq.h>
  5. #include <linux/uaccess.h>
  6.  
  7. /* Buffer handling */
  8.  
  9. #define RING_BUFFER_WRITABLE            0x01
  10.  
  11. struct ring_buffer {
  12.         atomic_t                        refcount;
  13.         struct rcu_head                 rcu_head;
  14. #ifdef CONFIG_PERF_USE_VMALLOC
  15.         struct work_struct              work;
  16.         int                             page_order;     /* allocation order  */
  17. #endif
  18.         int                             nr_pages;       /* nr of data pages  */
  19.         int                             overwrite;      /* can overwrite itself */
  20.         int                             paused;         /* can write into ring buffer */
  21.  
  22.         atomic_t                        poll;           /* POLL_ for wakeups */
  23.  
  24.         local_t                         head;           /* write position    */
  25.         local_t                         nest;           /* nested writers    */
  26.         local_t                         events;         /* event limit       */
  27.         local_t                         wakeup;         /* wakeup stamp      */
  28.         local_t                         lost;           /* nr records lost   */
  29.  
  30.         long                            watermark;      /* wakeup watermark  */
  31.         long                            aux_watermark;
  32.         /* poll crap */
  33.         spinlock_t                      event_lock;
  34.         struct list_head                event_list;
  35.  
  36.         atomic_t                        mmap_count;
  37.         unsigned long                   mmap_locked;
  38.         struct user_struct              *mmap_user;
  39.  
  40.         /* AUX area */
  41.         local_t                         aux_head;
  42.         local_t                         aux_nest;
  43.         local_t                         aux_wakeup;