免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2498 | 回复: 1
打印 上一主题 下一主题

[Android] 为什么在使用Android native Thread时报错Fatal signal 11 (SIGSEGV)? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-04-18 18:25 |只看该作者 |倒序浏览
我仿效Android的代码写了这样一个非常简单的Android C++ Thread类使用的测试程序:先构建一个WorkerInterface基类,然后派生了一个Worker类,他们有一个loopOnce方法。另外从Thread派生了一个WorkerThread类,用来实现多线程,WorkerThread有一个sp<WorkerInterface> mWorker的成员变量,它在WorkerThread构造函数中初始化 mWorker = new Worker()。在WorkerThread的threadLoop方法中调用成员变量mWorker的loopOnce方法,但在这个地方报错Fatal signal 11 (SIGSEGV)。整了几点怎么试都不能解决,有大侠能帮忙诊断下吗,我将无比感激。
  1. #include <jni.h>
  2. #include <cutils/log.h>
  3. #include <utils/threads.h>
  4. #include <utils/RefBase.h>

  5. namespace android {


  6. //------------------------------------------------
  7. class WorkerInterface : public virtual RefBase {
  8. protected:
  9.     WorkerInterface() { }
  10.     virtual ~WorkerInterface() { }

  11. public:
  12.     virtual void loopOnce() = 0;
  13. };
  14. //------------------------------------------------


  15. //------------------------------------------------
  16. // Worker class which will do the job in the Thread
  17. class Worker : public WorkerInterface {
  18. public:
  19.         Worker();
  20.     virtual ~Worker();
  21.    
  22.     virtual void loopOnce();
  23. };


  24. // Implement of the Worker class
  25. Worker::Worker() {
  26. }

  27. Worker::~Worker() {
  28. }

  29. void Worker::loopOnce() {
  30.     ALOGE("+++++++++++++++++++++++++++++Worker::loopOnce");
  31. }
  32. //------------------------------------------------

  33. //------------------------------------------------
  34. // Worker thread class which construct the thread
  35. class WorkerThread: public Thread {
  36. public:
  37.         WorkerThread();
  38.         virtual bool threadLoop();
  39. private:
  40.         sp<WorkerInterface> mWorker;
  41. };


  42. // Implement of the WorkerThread class
  43. WorkerThread::WorkerThread() : Thread(false) {
  44.         mWorker = new Worker();
  45. }

  46. bool WorkerThread::threadLoop() {
  47.         ALOGD("------------------threadLoop");
  48.         // *******************======>下面就是罪恶的报错的地方: Fatal signal 11 (SIGSEGV)
  49.         mWorker->loopOnce();   
  50.         return true;
  51. }
  52. //------------------------------------------------

  53. //------------------------------------------------
  54. JNIEXPORT jint JNICALL Java_me_autotouch_autotouch_Kernel_nativeReadyToRecord(JNIEnv *env, jobject obj) {
  55.        
  56.         sp<WorkerThread> thread = new WorkerThread();
  57.         thread->run("WorkerThread", PRIORITY_URGENT_DISPLAY);
  58.         while(1);
  59.     ALOGD("jni calling end");

  60.         return 0;
  61. }

  62. jint JNI_OnLoad(JavaVM* vm, void* reserved) {
  63.         return JNI_VERSION_1_4;
  64. }
  65. //------------------------------------------------
复制代码

论坛徽章:
0
2 [报告]
发表于 2014-04-24 22:20 |只看该作者
顶上去顶上去顶上去
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP