summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVic (Chun-Ju) Yang <victoryang@chromium.org>2014-01-10 12:02:22 +0800
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-01-13 17:54:16 +0000
commit8752377712a753faa02823ac24351483bf646c6c (patch)
treea802c9e7fc8c04da4fb5ebaec284191da3357a8f
parent23162ffedf01820acfdb8279b2f90c940f58e366 (diff)
downloadchrome-ec-8752377712a753faa02823ac24351483bf646c6c.tar.gz
Use pthread_equal() to compare thread ID
Pthread document explicitly stated that == operator should not be used to compare thread IDs. Let's use pthread_equal() to be safe. BUG=None Original-BUG=chrome-os-partner:19235 TEST=Check trace dump can be generated from non-main thread BRANCH=None Change-Id: I9984f70d74a817d8838150970893b6d2e41e5d0c Origianl-Change-Id: I5011e0e380db0ce43c4fcf8fca0d94d5b3108f55 Signed-off-by: Vic (Chun-Ju) Yang <victoryang@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/182039 Reviewed-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/182282 Commit-Queue: Dave Parker <dparker@chromium.org> Tested-by: Dave Parker <dparker@chromium.org>
-rw-r--r--core/host/task.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/host/task.c b/core/host/task.c
index e560b4c59d..08c70da66b 100644
--- a/core/host/task.c
+++ b/core/host/task.c
@@ -178,7 +178,7 @@ static void __attribute__((noinline)) _task_dump_trace_dispatch(int sig)
{
int need_dispatch = 1;
- if (pthread_self() != main_thread) {
+ if (!pthread_equal(pthread_self(), main_thread)) {
need_dispatch = 0;
} else if (!task_start_called()) {
fprintf(stderr, "Stack trace of main thread:\n");