This repository was archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 277
Update README.md #38
Open
amogh-gulati
wants to merge
2
commits into
microsoft:master
Choose a base branch
from
amogh-gulati:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Update README.md #38
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,12 +17,12 @@ The PDB format has not been officially documented, presenting a challenge for ot | |
| toolsets (such as Clang/LLVM) that want to work with Windows or the Visual Studio debugger. We want | ||
| to help the Open Source compilers to get onto the Windows platform. | ||
|
|
||
| The majority of content on this repo is presented as actual source files from the VC++ compiler | ||
| The majority of content on this repository is presented as actual source files from the VC++ compiler | ||
| toolset. Source code is the ultimate documentation :-) We hope that you will find it helpful. If you | ||
| find that you need other information to successfully complete your project, please enter an | ||
| [Issue](https://github.com/microsoft/microsoft-pdb/issues) letting us know what information you need. | ||
|
|
||
| ##Start here | ||
| <h2>Start here</h2> | ||
| The file pdb.h (on in langapi), provides the API surface for mscorpdb.dll, which we ship with every compiler and toolset. | ||
|
|
||
| Important points: | ||
|
|
@@ -36,7 +36,7 @@ A tool that I thought we also ship that would easily verify your “empty” PDB | |
|
|
||
| So in summary, by using the externally defined function entry points in pdb.h you can call into mscorpdb.dll. | ||
|
|
||
| ##What is a PDB | ||
| <h2>What is a PDB</h2><br> | ||
|
||
|
|
||
| PDBs are files with multiple ‘streams’ of information in them. You can almost assume each stream as an individual file, except that storing them as individual files is wasteful and inconvenient, hence this multiple streams approach. PDB streams are not NTFS streams though. They can be implemented as NTFS streams, but since they are to be made available on Win9X as well, they use a home brewed implementation. The implementation allows a primitive form of two-phase commit protocol. The writers of PDB files write what ever they want to in PDBs, but it won’t be committed until an explicit commit is issued. This allows the clients quite a bit of flexibility - say for example, a compiler can keep on writing information, and just not commit it, if it encounters an error in users’ source code. | ||
|
|
||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This makes no much sense, and sounds less markdown-ish, IMVHO.
It doesn't work though in their current form because of lack of space between ## and text
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have just started with open source and some school seniors suggested to start contributing in any form you can. I thought I could help with the readability of the readme here, though in retrospection should have gone through some more resources about it. Also realized that microsoft is really not a place for a bigenner lol. Any advice for a noobie or feedback is greatly appreciated.
Thanks.