Skip to content

Commit

Permalink
Section flags now use standard names
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Robbins authored and eschulte committed Feb 24, 2020
1 parent cc95157 commit 4cf03cc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions proto/Section.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ package proto;
import "ByteInterval.proto";

enum SectionFlag {
Flag_Undefined = 0;
READABLE = 1;
WRITABLE = 2;
EXECUTABLE = 3;
LOADED = 4;
INITIALIZED = 5;
THREAD_LOCAL = 6;
Undefined = 0;
Readable = 1;
Writable = 2;
Executable = 3;
Loaded = 4;
Initialized = 5;
ThreadLocal = 6;
}

message Section {
Expand Down

0 comments on commit 4cf03cc

Please sign in to comment.