我正在编制一个项目here is link of project on github
以下是第620行和690 Click here for Source Code
中包含pthread_cancel
的c源代码
但是我在我的Android手机和包含pthread_cancel
功能的项目中编译此工具但是我们知道{lib}只能在pthread_cancel
中使用pthread_kill
。pthread_kill
。所以我的问题是我应该pthread_canel
使用You have to rewrite this methord:
//MARK:-音乐播放相应后台状态
override func remoteControlReceived(with event: UIEvent?) {
if (event?.type == .remoteControl) {
NotificationCenter.default.post(name: NSNotification.Name(rawValue: Configs.remotePlayCotrolNotificaation), object: nil, userInfo: ["event":event!])
}
}
。
这个项目会是正确的补丁吗? 另外我想知道使用pthread_kill而不是pthread_cancel可能会出现的所有问题
如果不应该使用它们那么我应该使用或做什么来在android上编译这个项目。