终止挂起的 NSTask
如果我终止(或中断)一个挂起的 NSTask,那么它仍然会显示在活动监视器中。它没有运行,因为 CPU 为 0%,但它仍然占用内存。有解决办法吗?
If I terminate (or interrupt) a suspended NSTask, then it still shows up in activity monitor. It isn't running because the CPU is 0% but it's still taking up memory. Is there a work around?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
Alloc
/init
实例化了NSTask
,应该没有问题。NSTask最终会被垃圾收集器捕获,内存也会相应地被清除。
当应用程序完全关闭时,分配的空间和内存也将被清除,就像它应该的那样。
If you have instantiated the
NSTask
by usingAlloc
/init
, there should be no problem.The NSTask will eventually get caught by the garbage collector, and the memory will be cleared accordingly.
When the application closes entirely the allocated space and memory will be cleared aswell, like it should.