7

我有一个在 HTC Sensation (4.0.3) 上运行良好的 Android 应用程序,但是在最近的一些更改(特别是在数据库中添加一个表以进行持久存储和一些一般代码更改)之后,我发现这真的很不寻常logcat 中的错误消息(见下文),除了另一个 SO question > Android phonegap project spamming QTAGUID messages之外,我找不到任何信息。

副作用是某些数据集未正确加载到应用程序中(尽管其他数据确实从某些 Web 服务调用加载)

我在连接到 wifi 时特别遇到了这个问题,在 3g 上对其进行测试后,我在 logcat 中没有收到错误,但有问题的数据没有;没有加载到应用程序中。

如果有人以前见过此错误或知道它可能与什么有关,请告诉我。谢谢。

Logcat 示例输出:

03-26 09:32:05.554: I/qtaguid(1168): Failed write_ctrl(t 144 42958262894592 1408305917) res=-1 errno=1
03-26 09:32:05.554: I/qtaguid(1168): Tagging socket 144 with tag 271200000000(10002) for uid 1408305917 failed errno=-1
03-26 09:32:05.554: I/qtaguid(1168): Failed write_ctrl(t 145 42958262894592 1408305917) res=-1 errno=1
03-26 09:32:05.554: I/qtaguid(1168): Tagging socket 145 with tag 271200000000(10002) for uid 1408305917 failed errno=-1
03-26 09:32:05.554: I/qtaguid(1168): Failed write_ctrl(t 146 42958262894592 1408305917) res=-1 errno=1
03-26 09:32:05.554: I/qtaguid(1168): Tagging socket 146 with tag 271200000000(10002) for uid 1408305917 failed errno=-1
03-26 09:32:05.564: I/qtaguid(1168): Failed write_ctrl(t 147 42958262894592 0) res=-1 errno=1
03-26 09:32:05.564: I/qtaguid(1168): Tagging socket 147 with tag 271200000000(10002) for uid 0 failed errno=-1
03-26 09:32:05.564: I/qtaguid(1168): Failed write_ctrl(t 148 42958262894592 0) res=-1 errno=1
03-26 09:32:05.564: I/qtaguid(1168): Tagging socket 148 with tag 271200000000(10002) for uid 0 failed errno=-1
03-26 09:32:05.564: I/qtaguid(1168): Failed write_ctrl(t 149 42958262894592 0) res=-1 errno=1
03-26 09:32:05.564: I/qtaguid(1168): Tagging socket 149 with tag 271200000000(10002) for uid 0 failed errno=-1
4

1 回答 1

3

我刚刚对 HTC Sensation 进行了出厂重置,然后重新安装了该应用程序,这已经解决了问题!

我还在 Android 开源网站上找到了此信息,该信息涉及内核中可能与错误 > http://source.android.com/tech/datausage/kernel-overview.html相关的“qtaguid”进程。

我仍然不确定到底是什么导致了错误,所以如果有人遇到过类似的错误或找到原因,那么我很想知道!

于 2013-02-26T11:45:25.093 回答