cvsuser     04/05/07 09:00:31

  Modified:    include/parrot smallobject.h
  Log:
  change Dead_PObj do that structure is similar to a PMC
  
  Revision  Changes    Path
  1.14      +3 -2      parrot/include/parrot/smallobject.h
  
  Index: smallobject.h
  ===================================================================
  RCS file: /cvs/public/parrot/include/parrot/smallobject.h,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -w -r1.13 -r1.14
  --- smallobject.h     22 Apr 2004 08:55:06 -0000      1.13
  +++ smallobject.h     7 May 2004 16:00:31 -0000       1.14
  @@ -23,13 +23,14 @@
    * this data structure just for resetting
    * the on_free_list FLAG cheaper
    *
  + * this structure should not be bigger then a PMC
    */
   typedef struct {
       void *free_list_ptr;        /* generic free list ptr */
  -    UINTVAL object_buflen_dont_use;
  +    size_t object_buflen_dont_use;
       UINTVAL object_flags_dont_use;
       UINTVAL *arena_dod_flag_ptr;/* ptr to the dod flag nibble */
  -    UINTVAL flag_shift;         /* shift inside dod_flags */
  +    int flag_shift;         /* shift inside dod_flags */
   } Dead_PObj;
   
   #endif /* ARENA_DOD_FLAGS */
  
  
  

Reply via email to