]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Formatting change only.
authorNicholas Nethercote <njn@valgrind.org>
Tue, 30 Nov 2004 13:20:44 +0000 (13:20 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Tue, 30 Nov 2004 13:20:44 +0000 (13:20 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3157

coregrind/core.h

index 65723f6c80dcb06e8c9ce2a4566addb6dea787b2..e8cf7cd1badda52db917af52987dd96dc50e40e7 100644 (file)
@@ -1260,19 +1260,19 @@ extern void VG_(print_scheduler_stats) ( void );
 #define SF_CODE     (1 << 14) // segment contains cached code
 
 struct _Segment {
-   UInt                prot;           /* VKI_PROT_*                           */
-   UInt                flags;          /* SF_*                                 */
+   UInt         prot;         // VKI_PROT_*
+   UInt         flags;        // SF_*
 
-   Addr                addr;           /* mapped addr (page aligned)           */
-   SizeT       len;            /* size of mapping (page aligned)       */
+   Addr         addr;         // mapped addr (page aligned)
+   SizeT        len;          // size of mapping (page aligned)
 
-   /* These are valid if (flags & SF_FILE) */
-   ULong       offset;         /* file offset                          */
-   const Char  *filename;      /* filename (NULL if unknown)           */
-   UInt                dev;            /* device                               */
-   UInt                ino;            /* inode                                */
+   // These are valid if (flags & SF_FILE)
+   OffT        offset;        // file offset
+   const Char* filename;      // filename (NULL if unknown)
+   UInt        dev;           // device
+   UInt        ino;           // inode
 
-   SegInfo     *symtab;        /* symbol table                         */
+   SegInfo*    symtab;        // symbol table
 };
 
 /* segment mapped from a file descriptor */