2016-11-02 16:05:18 +01:00
|
|
|
/****************************************************************************
|
2018-05-29 21:21:26 +02:00
|
|
|
* libs/libc/pthread/pthread_mutexattr_getprotocol.c
|
2016-11-02 16:05:18 +01:00
|
|
|
*
|
2021-03-02 15:54:21 +01: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-11-02 16:05:18 +01:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2016-11-02 16:05:18 +01:00
|
|
|
*
|
2021-03-02 15:54:21 +01: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-11-02 16:05:18 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: pthread_mutexattr_getprotocol
|
2016-11-02 16:05:18 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return the value of the mutex protocol attribute.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2016-11-02 16:05:18 +01:00
|
|
|
* attr - A pointer to the mutex attributes to be queried.
|
|
|
|
* protocol - The user provided location in which to store the protocol
|
|
|
|
* value.
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2016-11-02 16:05:18 +01:00
|
|
|
* 0 if successful. Otherwise, an error code.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int pthread_mutexattr_getprotocol(FAR const pthread_mutexattr_t *attr,
|
|
|
|
FAR int *protocol)
|
|
|
|
{
|
|
|
|
DEBUGASSERT(attr != NULL && protocol != NULL);
|
|
|
|
|
2016-11-05 18:06:52 +01:00
|
|
|
#ifdef CONFIG_PRIORITY_INHERITANCE
|
2016-11-02 16:05:18 +01:00
|
|
|
linfo("Returning %d\n", attr->proto);
|
2020-12-01 03:41:49 +01:00
|
|
|
*protocol = attr->proto;
|
2016-11-05 18:06:52 +01:00
|
|
|
#else
|
|
|
|
linfo("Returning %d\n", PTHREAD_PRIO_NONE);
|
2020-12-01 03:41:49 +01:00
|
|
|
*protocol = PTHREAD_PRIO_NONE;
|
2016-11-05 18:06:52 +01:00
|
|
|
#endif
|
2020-12-01 03:41:49 +01:00
|
|
|
|
|
|
|
return 0;
|
2016-11-02 16:05:18 +01:00
|
|
|
}
|