This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: PATCH: new "void" memory region attribute


>  enum mem_access_mode
>  {
> -  MEM_RW,			/* read/write */
> -  MEM_RO,			/* read only */
> -  MEM_WO			/* write only */
> +  MEM_VOID = 0,
> +  MEM_READ = 1,
> +  MEM_WRITE = 2,
> +  MEM_RW = MEM_READ | MEM_WRITE,
>  };
> 

Greg, I'm just wondering why this part change?  Wouldn't just adding a 
MEM_VOID entry have been easier?

Andrew




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]