2016-11-02 09:05:18 -06:00
|
|
|
/****************************************************************************
|
2018-05-29 13:21:26 -06:00
|
|
|
* libs/libc/semaphore/sem_getprotocol.c
|
2016-11-02 09:05:18 -06: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 09:05:18 -06:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2016-11-02 09:05:18 -06: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 09:05:18 -06:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
2016-11-02 14:43:03 -06:00
|
|
|
#include <nuttx/semaphore.h>
|
|
|
|
|
2016-11-02 09:05:18 -06:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-04-21 16:33:14 -06:00
|
|
|
* Name: sem_getprotocol
|
2016-11-02 09:05:18 -06:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return the value of the semaphore protocol attribute.
|
|
|
|
*
|
2018-03-13 09:52:27 -06:00
|
|
|
* Input Parameters:
|
2016-11-02 09:05:18 -06:00
|
|
|
* sem - A pointer to the semaphore whose attributes are to be
|
|
|
|
* queried.
|
|
|
|
* protocol - The user provided location in which to store the protocol
|
|
|
|
* value.
|
|
|
|
*
|
2018-02-01 10:00:02 -06:00
|
|
|
* Returned Value:
|
2017-10-03 12:51:15 -06:00
|
|
|
* This function is exposed as a non-standard application interface. It
|
2022-01-06 11:02:13 +01:00
|
|
|
* returns zero (OK). Otherwise, an error code.
|
2016-11-02 09:05:18 -06:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int sem_getprotocol(FAR sem_t *sem, FAR int *protocol)
|
|
|
|
{
|
2016-11-02 09:29:16 -06:00
|
|
|
DEBUGASSERT(sem != NULL && protocol != NULL);
|
2016-11-02 09:05:18 -06:00
|
|
|
|
2023-01-18 22:10:06 +09:00
|
|
|
#ifdef CONFIG_PRIORITY_INHERITANCE
|
2023-01-11 00:10:48 +08:00
|
|
|
*protocol = sem->flags;
|
2023-01-18 22:10:06 +09:00
|
|
|
#else
|
|
|
|
*protocol = SEM_PRIO_NONE;
|
|
|
|
#endif
|
|
|
|
|
2016-11-03 12:49:44 -06:00
|
|
|
return OK;
|
|
|
|
}
|