1998-01-25
1998-01-25 08:28:45 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
-
61e9a0f12e1bf766660e8d5f80ccff13c2c7f6a6
(11 lines)
(+10/-1)
[
Show
| Annotate
]
Branch: 7.9
jumbopatch! (DEBUG_MALLOC + parent feature fix)
Rev: src/ChangeLog:1.130
Rev: src/acconfig.h:1.15
Rev: src/array.c:1.22
Rev: src/array.h:1.6
Rev: src/builtin_functions.c:1.62
Rev: src/builtin_functions.h:1.6
Rev: src/cpp.c:1.14
Rev: src/dmalloc.h:1.1
Rev: src/docode.c:1.25
Rev: src/dynamic_buffer.c:1.6
Rev: src/dynamic_buffer.h:1.4
Rev: src/error.c:1.10
Rev: src/error.h:1.9
Rev: src/fdlib.c:1.9
Rev: src/gc.c:1.27
Rev: src/global.h:1.13
Rev: src/interpret.c:1.61
Rev: src/language.yacc:1.54
Rev: src/las.c:1.43
Rev: src/las.h:1.11
Rev: src/lex.c:1.40
Rev: src/lex.h:1.9
Rev: src/main.c:1.35
Rev: src/main.h:1.4
Rev: src/mapping.c:1.27
Rev: src/mapping.h:1.7
Rev: src/module.c:1.7
Rev: src/modules/Image/colortable.c:1.36
Rev: src/modules/Image/encodings/gif.c:1.30
Rev: src/modules/Image/encodings/png.c:1.2
Rev: src/modules/Image/encodings/pnm.c:1.12
Rev: src/modules/Image/encodings/x.c:1.5
Rev: src/modules/Yp/yp.c:1.10
Rev: src/modules/files/efuns.c:1.44
Rev: src/modules/files/file.c:1.69
Rev: src/modules/files/socket.c:1.25
Rev: src/modules/files/socktest.pike:1.7
Rev: src/modules/spider/accesseddb.c:1.13
Rev: src/modules/spider/dumudp.c:1.32
Rev: src/modules/spider/spider.c:1.51
Rev: src/modules/system/system.c:1.39
Rev: src/multiset.c:1.9
Rev: src/object.c:1.33
Rev: src/peep.c:1.17
Rev: src/pike_memory.c:1.4
Rev: src/pike_memory.h:1.2
Rev: src/pike_types.c:1.29
Rev: src/pike_types.h:1.7
Rev: src/program.c:1.54
Rev: src/program.h:1.27
Rev: src/stralloc.c:1.24
Rev: src/stralloc.h:1.12
Rev: src/testsuite.in:1.68
Rev: src/threads.c:1.53
317: Inside #if defined(DEBUG)
fprintf(stderr,"**Program id: %ld\n",(long)(p->id));
if(!p->num_linenumbers)
{
+ int e;
fprintf(stderr,"**The program was written in C.\n");
- break;
+ fprintf(stderr,"**identifiers:\n");
+ for(e=0;e<p->num_identifiers;e++)
+ fprintf(stderr,"*** %s\n",p->identifiers[e].name->str);
}
for(pos=0;pos<(long)p->num_program && pos<100;pos++)
338: Inside #if defined(DEBUG)
debug_dump_array((struct array *)a);
break;
+ case T_MAPPING:
+ fprintf(stderr,"**Describing mapping:\n");
+ debug_dump_mapping((struct mapping *)a);
+ break;
+
case T_STRING:
{
struct pike_string *s=(struct pike_string *)a;