mirror of
https://github.com/yse/easy_profiler.git
synced 2024-12-27 00:31:02 +08:00
#0 Update readme
This commit is contained in:
parent
b3f6b4f61f
commit
8665ee8fd6
22
README.md
22
README.md
@ -7,7 +7,27 @@
|
|||||||
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
|
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
|
||||||
|
|
||||||
# Status
|
# Status
|
||||||
Branch `develop` has been rebased to `release_2_0` and now contains all v2.0.0 features and new UI style.
|
Branch `develop` contains all v2.0.0 features and new UI style.
|
||||||
|
|
||||||
|
Please, note that .prof file header has changed in v2.0.0.
|
||||||
|
Now it is:
|
||||||
|
```cpp
|
||||||
|
struct EasyFileHeader
|
||||||
|
{
|
||||||
|
uint32_t signature = 0;
|
||||||
|
uint32_t version = 0;
|
||||||
|
profiler::processid_t pid = 0;
|
||||||
|
int64_t cpu_frequency = 0;
|
||||||
|
profiler::timestamp_t begin_time = 0;
|
||||||
|
profiler::timestamp_t end_time = 0;
|
||||||
|
|
||||||
|
// Changed order of memory_size and blocks_number relative to v1.3.0
|
||||||
|
uint64_t memory_size = 0;
|
||||||
|
uint64_t descriptors_memory_size = 0;
|
||||||
|
uint32_t total_blocks_number = 0;
|
||||||
|
uint32_t total_descriptors_number = 0;
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
1. [About](#about)
|
1. [About](#about)
|
||||||
2. [Key features](#key-features)
|
2. [Key features](#key-features)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user