You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
In particular, these lines are spinning uncontrollably after the child process exited.
Xcode's memory debugger revealed that the file handle and related objects are kept in memory by the autorelease pool – and explicitly wrapping the Process.execute call with @autoreleasepool resolved the issue.
Process.asyncExecute doesn't seem to have this issue, and I have not tested anything on Linux.
The text was updated successfully, but these errors were encountered:
#170 changes macOS and Linux to using the same code. Seems like that will fix this issue. If you have code that was known to recreate the issue, I can add to a test to verify that it no longer does.
In particular, these lines are spinning uncontrollably after the child process exited.
Xcode's memory debugger revealed that the file handle and related objects are kept in memory by the autorelease pool – and explicitly wrapping the Process.execute call with
@autoreleasepool
resolved the issue.Process.asyncExecute doesn't seem to have this issue, and I have not tested anything on Linux.
The text was updated successfully, but these errors were encountered: