Avoid freeing memory in detachInterrupt#2356
Open
metcalf wants to merge 1 commit intoparticle-iot:developfrom
Open
Avoid freeing memory in detachInterrupt#2356metcalf wants to merge 1 commit intoparticle-iot:developfrom
metcalf wants to merge 1 commit intoparticle-iot:developfrom
Conversation
1957817 to
76bd811
Compare
Author
|
Checking in on this since it's blocking me from using Cloud Flash. Is this likely to get merged or should I rewrite my application to avoid this issue? |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Problem
When
attachHandleris called with a function pointer (or a pointer to a member function and instance), it allocates astd::function. WhendetachHandleris then called on the same pin, it callsdeleteto free that memory. That causes a heap error if you try to calldetachHandleron this pin from an ISR. The same is true for attaching and detaching system interrupts.Solution
This PR removes the
deletes and leaves the memory allocated to be re-used the next timeattach*is called. This prevents the application from reclaiming the memorystd::functionis allocating on the heap, but I suspect that's OK since there can be no more allocations than the number of pins.I think the alternative is to update the documentation to specify when
detachInterruptcan be called. It's probably still worth updating the docs to specify thatattachInterruptandattachSystemInterruptcannot be called from an ISR when used with a function pointer / class+member.Steps to Test
Wrote and ran an integration test on my Photon.
Example App
Deferring to the integration test, but can write something if necessary.
References
The
deleteindetachSystemInterruptwas added in #951. I think the primary problem fixed in that PR was an unbounded memory leak repeatedly callingattachSystemInterrupt.Completeness