pike.git
/
src
/
call_out.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/call_out.c:1:
-
#include <sys
/
types
.
h>
+
/*\
+
|||
This file a part of uLPC, and is copyright by Fredrik Hubinette
+
||| uLPC is distributed as GPL (General Public License)
+
||| See the files COPYING and DISCLAIMER for more information.
+
\*
/
#include <stdio.h> #include "global.h" #include "array.h" #include "call_out.h" #include "dynamic_buffer.h" #include "object.h" #include "interpret.h" #include "error.h" #include "builtin_efuns.h"
-
#include "sys/types.h"
+
#include "memory.h" call_out **pending_calls=0; /* pointer to first busy pointer */ int num_pending_calls; /* no of busy pointers in buffer */ static call_out **call_buffer=0; /* pointer to buffer */ static int call_buffer_size; /* no of pointers in buffer */ extern time_t current_time; static void verify_call_outs()