91 lines
3.1 KiB
C
91 lines
3.1 KiB
C
/****************************************************************************
|
|
* sched/pthread/pthread_setaffinity.c
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* 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
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <stdint.h>
|
|
#include <pthread.h>
|
|
#include <sched.h>
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <debug.h>
|
|
|
|
#include <nuttx/sched.h>
|
|
|
|
#include "pthread/pthread.h"
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: pthread_setaffinity
|
|
*
|
|
* Description:
|
|
* The pthread_setaffinity_np() function sets the CPU affinity mask of
|
|
* the thread thread to the CPU set pointed to by cpuset. If the call
|
|
* is successful, and the thread is not currently running on one of the
|
|
* CPUs in cpuset, then it is migrated to one of those CPUs.
|
|
|
|
* 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).
|
|
*
|
|
* Input Parameters:
|
|
* thread - The ID of thread whose affinity set will be modified.
|
|
* cpusetsize - Size of cpuset. MUST be sizeofcpu_set_t().
|
|
* cpuset - Provides the new affinity set for the thread.
|
|
*
|
|
* Returned Value:
|
|
* 0 if successful. Otherwise, an errno value is returned indicating the
|
|
* nature of the failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int pthread_setaffinity_np(pthread_t thread, size_t cpusetsize,
|
|
FAR const cpu_set_t *cpuset)
|
|
{
|
|
int ret;
|
|
|
|
DEBUGASSERT(thread > 0 && cpusetsize == sizeof(cpu_set_t) &&
|
|
cpuset != NULL);
|
|
|
|
sinfo("thread ID=%d cpusetsize=%zu cpuset=%ju\n",
|
|
(int)thread, cpusetsize, (uintmax_t)*cpuset);
|
|
|
|
/* Let nxsched_set_affinity do all of the work, adjusting the return
|
|
* value.
|
|
*/
|
|
|
|
ret = nxsched_set_affinity((pid_t)thread, cpusetsize, cpuset);
|
|
return ret < 0 ? -ret : OK;
|
|
}
|
|
|
|
#endif /* CONFIG_SMP */
|