pike.git/
src/
pike_types.h
Branch:
Tag:
Non-build tags
All tags
No tags
2007-03-28
2007-03-28 15:23:39 by Henrik Grubbström (Grubba) <grubba@grubba.org>
86245aac6bdd4913b4e39cb037a2a1b3f899c38f (
9
lines) (+
8
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Added flags CALL_STRICT and CALL_LAST_ARG.
Rev: src/pike_types.h:1.100
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: pike_types.h,v 1.
99
2007/03/
26
11
:
04
:
49
grubba Exp $
+
|| $Id: pike_types.h,v 1.
100
2007/03/
28
15
:
23
:
39
grubba Exp $
*/ #ifndef PIKE_TYPES_H
68:
#define PT_FLAG_ASSIGN_9 0x200000 /* The subtree assigns '9'. */ #define PT_FLAG_ASSIGN 0x3ff000 /* The subtree holds assigns. */
+
/*
+
* new_check_call() flags
+
*/
+
#define CALL_STRICT 0x0001 /* Strict checking. */
+
#define CALL_LAST_ARG 0x0002 /* This is the last argument. */
+
void debug_free_type(struct pike_type *t); #ifdef DEBUG_MALLOC #define copy_pike_type(D, S) add_ref((struct pike_type *)debug_malloc_pass(D = (S)))