Branch: Tag:

2003-02-15

2003-02-15 17:33:34 by Henrik Grubbström (Grubba) <grubba@grubba.org>

create_thread() is now truly a class...

Rev: src/builtin_functions.c:1.476
Rev: src/encode.c:1.164
Rev: src/gc.c:1.208
Rev: src/interpret.c:1.290
Rev: src/interpret.h:1.127
Rev: src/modules/HTTPLoop/timeout.c:1.11
Rev: src/modules/files/file.c:1.254
Rev: src/pike_threadlib.h:1.30
Rev: src/threads.c:1.203
Rev: src/threads.h:1.124

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: interpret.h,v 1.126 2003/02/08 03:49:22 mast Exp $ + || $Id: interpret.h,v 1.127 2003/02/15 17:33:33 grubba Exp $   */      #ifndef INTERPRET_H
24:    int mark_stack_malloced;    JMP_BUF *recoveries;   #ifdef PIKE_THREADS -  struct object * thread_id; +  struct object *thread_obj; /* Object containing the thread state. */ +  struct thread_state *thread_state;   #endif    char *stack_top;    DO_IF_SECURITY(struct object *current_creds;)