(OTF_InternalData): Delete the member drive_log.
authorhanda <handa>
Tue, 24 Nov 2009 04:37:14 +0000 (04:37 +0000)
committerhanda <handa>
Tue, 24 Nov 2009 04:37:14 +0000 (04:37 +0000)
(set_drive_log, get_drive_log): Delete them.

src/otfopen.c

index c688728..3fdc41f 100644 (file)
@@ -331,9 +331,6 @@ struct OTF_InternalData
 
   /* Root of application data chain.  */
   OTF_ApplicationData *app_data;
-
-  /* Log of applied features by OTF_driver_XXX.  */
-  OTF_DriveLog *drive_log;
 };
 
 static OTF_MemoryRecord *
@@ -387,22 +384,6 @@ allocate_memory_record (OTF *otf)
       }                                                                        \
   } while (0)
 
-void
-set_drive_log (OTF *otf, OTF_DriveLog *log)
-{
-  OTF_InternalData *internal_data = (OTF_InternalData *) otf->internal_data;
-
-  internal_data->drive_log = log;
-}
-
-OTF_DriveLog *
-get_drive_log (OTF *otf)
-{
-  OTF_InternalData *internal_data = (OTF_InternalData *) otf->internal_data;
-
-  return (internal_data->drive_log);
-}
-
 \f
 /*** (1-2) "head" table */