2016-02-20 07:59:19 +08:00
|
|
|
/****************************************************************************
|
2016-08-07 22:25:30 +08:00
|
|
|
* sched/pthread/pthread_getaffinity.c
|
2016-02-20 07:59:19 +08:00
|
|
|
*
|
2024-09-11 19:45:11 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
2021-02-08 23:33:58 +08:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2016-02-20 07:59:19 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2016-02-20 07:59:19 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2016-02-20 07:59:19 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2020-11-22 14:03:32 +08:00
|
|
|
#include <stdint.h>
|
2016-02-20 07:59:19 +08:00
|
|
|
#include <pthread.h>
|
|
|
|
#include <sched.h>
|
2021-05-18 14:59:14 +08:00
|
|
|
#include <assert.h>
|
2016-02-20 07:59:19 +08:00
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2018-01-31 06:16:41 +08:00
|
|
|
#include <nuttx/sched.h>
|
|
|
|
|
2016-02-20 07:59:19 +08:00
|
|
|
#include "pthread/pthread.h"
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pthread_getschedparam
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* The pthread_getaffinity_np() function returns the CPU affinity mask
|
|
|
|
* of the thread thread in the buffer pointed to by cpuset.
|
|
|
|
*
|
|
|
|
* The argument cpusetsize is the length (in bytes) of the buffer
|
|
|
|
* pointed to by cpuset. Typically, this argument would be specified as
|
|
|
|
* sizeof(cpu_set_t).
|
|
|
|
*
|
2018-03-13 23:52:27 +08:00
|
|
|
* Input Parameters:
|
2016-02-20 07:59:19 +08:00
|
|
|
* thread - The ID of thread whose affinity set will be retrieved.
|
|
|
|
* cpusetsize - Size of cpuset. MUST be sizeofcpu_set_t().
|
|
|
|
* cpuset - The location to return the thread's new affinity set.
|
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Returned Value:
|
2016-02-20 07:59:19 +08:00
|
|
|
* 0 if successful. Otherwise, an errno value is returned indicating the
|
|
|
|
* nature of the failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int pthread_getaffinity_np(pthread_t thread, size_t cpusetsize,
|
|
|
|
FAR cpu_set_t *cpuset)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
DEBUGASSERT(thread > 0 && cpusetsize == sizeof(cpu_set_t) &&
|
|
|
|
cpuset != NULL);
|
|
|
|
|
2020-11-22 14:03:32 +08:00
|
|
|
sinfo("thread ID=%d cpusetsize=%zu cpuset=%ju\n",
|
|
|
|
(int)thread, cpusetsize, (uintmax_t)*cpuset);
|
|
|
|
|
2020-05-09 22:04:45 +08:00
|
|
|
/* Let nxsched_get_affinity do all of the work */
|
2016-02-20 07:59:19 +08:00
|
|
|
|
2020-05-09 22:04:45 +08:00
|
|
|
ret = nxsched_get_affinity((pid_t)thread, cpusetsize, cpuset);
|
2016-02-20 07:59:19 +08:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2020-05-09 22:04:45 +08:00
|
|
|
/* If nxsched_get_affinity() fails, return the positive errno */
|
2016-02-20 07:59:19 +08:00
|
|
|
|
2018-01-31 06:16:41 +08:00
|
|
|
ret = -ret;
|
2016-02-20 07:59:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_SMP */
|