2003-02-08
2003-02-08 18:37:54 by Henrik Grubbström (Grubba) <grubba@grubba.org>
-
a0c8c191f9b1597048a47faa1f6e901d22b7107d
(11 lines)
(+6/-5)
[
Show
| Annotate
]
Branch: 7.9
Oops, bugfix.
Rev: src/builtin_functions.c:1.471
2:
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
- || $Id: builtin_functions.c,v 1.470 2003/02/08 18:07:07 grubba Exp $
+ || $Id: builtin_functions.c,v 1.471 2003/02/08 18:37:54 grubba Exp $
*/
#include "global.h"
- RCSID("$Id: builtin_functions.c,v 1.470 2003/02/08 18:07:07 grubba Exp $");
+ RCSID("$Id: builtin_functions.c,v 1.471 2003/02/08 18:37:54 grubba Exp $");
#include "interpret.h"
#include "svalue.h"
#include "pike_macros.h"
5996:
time -= auto_gc_time;
#endif
- nsec = args && !UNSAFE_IS_ZERO(sp-args);
+ nsec = args && !UNSAFE_IS_ZERO(Pike_sp-args);
pop_n_elems(args);
if (nsec)
6022: Inside #if defined(HAVE_GETHRTIME)
PMOD_EXPORT void f_gethrtime(INT32 args)
{
int nsec = 0;
- nsec = args && !UNSAFE_IS_ZERO(sp-args);
+ nsec = args && !UNSAFE_IS_ZERO(Pike_sp-args);
pop_n_elems(args);
if(nsec)
6034:
PMOD_EXPORT void f_gethrtime(INT32 args)
{
int nsec = 0;
- nsec = args && !UNSAFE_IS_ZERO(sp-args);
+ nsec = args && !UNSAFE_IS_ZERO(Pike_sp-args);
pop_n_elems(args);
GETTIMEOFDAY(¤t_time);