Fix some typos in comments.

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@307 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
doshimun 2009-01-14 21:54:08 +00:00
parent a6f58a1ac8
commit 308947d1ce

View File

@ -181,12 +181,12 @@ void ExceptionHandler::Initialize(const wstring& dump_path,
} }
// There is a race condition here. If the first instance has not yet // There is a race condition here. If the first instance has not yet
// initialized the critical section, the second (and later) instances will // initialized the critical section, the second (and later) instances may
// try to use uninitialized critical section object. The featuer of multiple // try to use uninitialized critical section object. The feature of multiple
// instnaces in one module is not used much, so leave it as is for now. // instances in one module is not used much, so leave it as is for now.
// One way to solve this in the current design (that is, keeping the static // One way to solve this in the current design (that is, keeping the static
// handler stack) is to use spin locks with volatile bools to synchronize // handler stack) is to use spin locks with volatile bools to synchronize
// the handler stack. This works only if the compiler guarntees to generate // the handler stack. This works only if the compiler guarantees to generate
// cache coherent code for volatile. // cache coherent code for volatile.
// TODO(munjal): Fix this in a better way by changing the design if possible. // TODO(munjal): Fix this in a better way by changing the design if possible.