Skip to content

Commit

Permalink
Add signal safe comment on impl block that was missing it
Browse files Browse the repository at this point in the history
It had dang well better be signal safe to reset an initialized context ;)
  • Loading branch information
fitzgen committed Aug 20, 2017
1 parent ad0019a commit cd8136b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cfi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1397,6 +1397,10 @@ where
R: Reader,
Section: UnwindSection<R>;

/// # Signal Safe Methods
///
/// These methods are guaranteed not to allocate, acquire locks, or perform any
/// other signal-unsafe operations.
impl<Section, R> InitializedUnwindContext<Section, R>
where
R: Reader,
Expand Down

0 comments on commit cd8136b

Please sign in to comment.