2001-01-31
2001-01-31 09:39:13 by Per Hedbor <ph@opera.com>
-
68d25672765e60f7feee7831037169b9e8082b87
(7 lines)
(+4/-3)
[
Show
| Annotate
]
Branch: 5.2
handle() should not be local static
Rev: server/base_server/roxen.pike:1.622
4:
// Per Hedbor, Henrik Grubbström, Pontus Hagland, David Hedbor and others.
// ABS and suicide systems contributed freely by Francesco Chemolli
- constant cvs_version="$Id: roxen.pike,v 1.621 2001/01/31 05:34:40 per Exp $";
+ constant cvs_version="$Id: roxen.pike,v 1.622 2001/01/31 09:39:13 per Exp $";
// Used when running threaded to find out which thread is the backend thread,
// for debug purposes only.
519: Inside #if defined(THREADS)
}
}
- local static void handle(function f, mixed ... args)
+ void handle(function f, mixed ... args)
{
handle_queue->write(({f, args }));
}
572:
#else
// handle function used when THREADS is not enabled.
- local static void handle(function f, mixed ... args)
+ void handle(function f, mixed ... args)
{
f(@args);
}