• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

system/core


コミットメタ情報

リビジョンfe509fc8ee6bbb6d2378dcf0097004cfaba66919 (tree)
日時2019-03-28 19:36:05
作者Chih-Wei Huang <cwhuang@linu...>
コミッターChih-Wei Huang

ログメッセージ

libcutils: ignore a trivial error

Sometimes it complains: "add_tid_to_cgroup failed to write '1900'
(No space left on device); fd=11". I don't understand why.
The device should have enough space.

Just ignore this error.

変更サマリ

差分

--- a/libcutils/sched_policy.cpp
+++ b/libcutils/sched_policy.cpp
@@ -93,6 +93,8 @@ static int add_tid_to_cgroup(int tid, int fd)
9393 return 0;
9494 SLOGW("add_tid_to_cgroup failed to write '%s' (%s); fd=%d\n",
9595 ptr, strerror(errno), fd);
96+ if (errno == ENOSPC)
97+ return 0;
9698 errno = EINVAL;
9799 return -1;
98100 }