mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
unix: add thread affinity support on openharmony (#4705)
This commit is contained in:
parent
82cdfb75ff
commit
b807450e98
@ -214,7 +214,7 @@ int uv_thread_setaffinity(uv_thread_t* tid,
|
|||||||
if (cpumask[i])
|
if (cpumask[i])
|
||||||
CPU_SET(i, &cpuset);
|
CPU_SET(i, &cpuset);
|
||||||
|
|
||||||
#if defined(__ANDROID__)
|
#if defined(__ANDROID__) || defined(__OHOS__)
|
||||||
if (sched_setaffinity(pthread_gettid_np(*tid), sizeof(cpuset), &cpuset))
|
if (sched_setaffinity(pthread_gettid_np(*tid), sizeof(cpuset), &cpuset))
|
||||||
r = errno;
|
r = errno;
|
||||||
else
|
else
|
||||||
@ -242,7 +242,7 @@ int uv_thread_getaffinity(uv_thread_t* tid,
|
|||||||
return UV_EINVAL;
|
return UV_EINVAL;
|
||||||
|
|
||||||
CPU_ZERO(&cpuset);
|
CPU_ZERO(&cpuset);
|
||||||
#if defined(__ANDROID__)
|
#if defined(__ANDROID__) || defined(__OHOS__)
|
||||||
if (sched_getaffinity(pthread_gettid_np(*tid), sizeof(cpuset), &cpuset))
|
if (sched_getaffinity(pthread_gettid_np(*tid), sizeof(cpuset), &cpuset))
|
||||||
r = errno;
|
r = errno;
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user