Branch: Tag:

1999-01-21

1999-01-21 09:15:55 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

security system v1.0E-100 checked in... (lots of work left to do)

Rev: src/array.c:1.43
Rev: src/array.h:1.15
Rev: src/builtin_functions.c:1.145
Rev: src/error.h:1.26
Rev: src/interpret.c:1.112
Rev: src/interpret.h:1.25
Rev: src/main.c:1.61
Rev: src/mapping.c:1.38
Rev: src/mapping.h:1.13
Rev: src/modules/files/file.c:1.133
Rev: src/modules/system/system.c:1.61
Rev: src/multiset.c:1.13
Rev: src/multiset.h:1.8
Rev: src/object.c:1.54
Rev: src/object.h:1.20
Rev: src/opcodes.c:1.35
Rev: src/otable.h:1.3(DEAD)
Rev: src/program.c:1.106
Rev: src/program.h:1.47
Rev: src/security.c:1.1
Rev: src/security.h:1.1
Rev: src/svalue.h:1.20
Rev: src/testsuite.in:1.139
Rev: src/threads.c:1.86

5:   \*/      /* -  * $Id: array.h,v 1.14 1998/11/22 11:02:32 hubbe Exp $ +  * $Id: array.h,v 1.15 1999/01/21 09:14:57 hubbe Exp $    */   #ifndef ARRAY_H   #define ARRAY_H
15:   struct array   {    INT32 refs; /* Reference count */ + #ifdef PIKE_SECURITY +  struct object *prot; + #endif    struct array *next; /* we need to keep track of all arrays */    struct array *prev; /* Another pointer, so we don't have to search    * when freeing arrays */