2004-06-02
2004-06-02 00:11:26 by Martin Nilsson <mani@lysator.liu.se>
-
54a13070199a4a104f34c8d1cb13d5f939034392
(15 lines)
(+8/-7)
[
Show
| Annotate
]
Branch: 7.9
inline -> INLINE
Rev: src/block_alloc.h:1.73
Rev: src/builtin.cmod:1.160
Rev: src/docode.c:1.177
Rev: src/gc.h:1.115
Rev: src/global.h:1.100
Rev: src/interpret.c:1.351
Rev: src/interpret.h:1.153
Rev: src/object.c:1.256
Rev: src/pike_cpulib.h:1.12
Rev: src/pike_float.h:1.7
Rev: src/pike_memory.c:1.152
Rev: src/program.h:1.206
Rev: src/sscanf.c:1.162
Rev: src/svalue.h:1.130
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: svalue.h,v 1.129 2004/05/28 16:08:24 grubba Exp $
+ || $Id: svalue.h,v 1.130 2004/06/02 00:11:26 nilsson Exp $
*/
#ifndef SVALUE_H
378:
debug_check_type_hint ((SVALS), (NUM), (TYPE_HINT))
#ifdef DEBUG_MALLOC
- static inline struct svalue *dmalloc_check_svalue(struct svalue *s, char *l)
+ static INLINE struct svalue *dmalloc_check_svalue(struct svalue *s, char *l)
{
debug_malloc_update_location(s,l);
#if 1
388: Inside #if defined(DEBUG_MALLOC)
return s;
}
- static inline union anything *dmalloc_check_union(union anything *u,int type, char * l)
+ static INLINE union anything *dmalloc_check_union(union anything *u,int type, char * l)
{
debug_malloc_update_location(u,l);
#if 1
682:
#endif
#ifndef free_svalue
- static inline void free_svalue(struct svalue *s)
+ static INLINE void free_svalue(struct svalue *s)
{
INT64 tmp;
struct svalue zero;
693:
#endif
#ifndef free_short_svalue
- static inline void free_short_svalue(union anything *s, int t)
+ static INLINE void free_short_svalue(union anything *s, int t)
{
if(t <= MAX_REF_TYPE)
{
705:
#endif
#ifndef add_ref_svalue
- static inline void add_ref_svalue(struct svalue *s)
+ static INLINE void add_ref_svalue(struct svalue *s)
{
INT64 sv;
sv=pike_atomic_get64((INT64 *)s);
741:
#endif
#ifndef assign_svalue
- static inline void assign_svalue(struct svalue *to, const struct svalue *from)
+ static INLINE void assign_svalue(struct svalue *to, const struct svalue *from)
{
INT64 tmp, sv;
if(to != from)