This repository was archived by the owner on May 1, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 144
144
"THREAD_FINISH" ,
145
145
"CPU_STACK_SAMPLE" ,
146
146
"WALL_STACK_SAMPLE" ,
147
+ "MEMORY_MAPPING_FAILURE" ,
147
148
]
148
149
149
150
STACK_FRAME_ENTRIES = frozenset (
Original file line number Diff line number Diff line change 1
- // @generated SignedSource<<884d58f3557768478d1eb759f0bfc4ba >>
1
+ // @generated SignedSource<<6ae2e8fe64e0eb182f0fe5b46ecbee9b >>
2
2
3
3
#include < stdexcept>
4
4
#include < profilo/entries/EntryType.h>
@@ -126,6 +126,7 @@ const char* to_string(EntryType type) {
126
126
case EntryType::THREAD_FINISH: return " THREAD_FINISH" ;
127
127
case EntryType::CPU_STACK_SAMPLE: return " CPU_STACK_SAMPLE" ;
128
128
case EntryType::WALL_STACK_SAMPLE: return " WALL_STACK_SAMPLE" ;
129
+ case EntryType::MEMORY_MAPPING_FAILURE: return " MEMORY_MAPPING_FAILURE" ;
129
130
default : throw std::invalid_argument (" Unknown entry type" );
130
131
}
131
132
}
Original file line number Diff line number Diff line change 1
- // @generated SignedSource<<f47b996e783580997f3b9e84739d7721 >>
1
+ // @generated SignedSource<<776706c631f555de07373bf9a30ba723 >>
2
2
3
3
#pragma once
4
4
@@ -123,6 +123,7 @@ enum class EntryType {
123
123
THREAD_FINISH = 114 ,
124
124
CPU_STACK_SAMPLE = 115 ,
125
125
WALL_STACK_SAMPLE = 116 ,
126
+ MEMORY_MAPPING_FAILURE = 117 ,
126
127
};
127
128
128
129
Original file line number Diff line number Diff line change 1
- // @generated SignedSource<<6e7a15b5b6fc92e87cabe8628bfac979 >>
1
+ // @generated SignedSource<<1e08008ef69a4e334fa2515fba4f0495 >>
2
2
3
3
package com .facebook .profilo .entries ;
4
4
@@ -121,6 +121,7 @@ public class EntryType {
121
121
public static final int THREAD_FINISH = 114 ;
122
122
public static final int CPU_STACK_SAMPLE = 115 ;
123
123
public static final int WALL_STACK_SAMPLE = 116 ;
124
+ public static final int MEMORY_MAPPING_FAILURE = 117 ;
124
125
125
126
public static final String [] NAMES = {
126
127
"UNKNOWN_TYPE" ,
@@ -240,5 +241,6 @@ public class EntryType {
240
241
"THREAD_FINISH" ,
241
242
"CPU_STACK_SAMPLE" ,
242
243
"WALL_STACK_SAMPLE" ,
244
+ "MEMORY_MAPPING_FAILURE" ,
243
245
};
244
246
}
You can’t perform that action at this time.
0 commit comments