mirror of
https://github.com/eclipse-threadx/threadx.git
synced 2025-11-16 12:34:48 +00:00
91 lines
5.0 KiB
C
91 lines
5.0 KiB
C
/***************************************************************************
|
|
* Copyright (c) 2024 Microsoft Corporation
|
|
*
|
|
* This program and the accompanying materials are made available under the
|
|
* terms of the MIT License which is available at
|
|
* https://opensource.org/licenses/MIT.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
**************************************************************************/
|
|
|
|
|
|
/**************************************************************************/
|
|
/**************************************************************************/
|
|
/** */
|
|
/** POSIX wrapper for THREADX */
|
|
/** */
|
|
/** */
|
|
/** */
|
|
/**************************************************************************/
|
|
/**************************************************************************/
|
|
|
|
/* Include necessary system files. */
|
|
|
|
#include "tx_api.h" /* Threadx API */
|
|
#include "pthread.h" /* Posix API */
|
|
#include "px_int.h" /* Posix helper functions */
|
|
|
|
|
|
/**************************************************************************/
|
|
/* */
|
|
/* FUNCTION RELEASE */
|
|
/* */
|
|
/* pthread_mutexattr_destroy PORTABLE C */
|
|
/* 6.1.7 */
|
|
/* AUTHOR */
|
|
/* */
|
|
/* William E. Lamie, Microsoft Corporation */
|
|
/* */
|
|
/* DESCRIPTION */
|
|
/* */
|
|
/* This function shall destroy a mutex attributes object; the object */
|
|
/* becomes,in effect,uninitialized.A destroyed attr attributes object */
|
|
/* can be reinitialized using pthread_mutexattr_init(); */
|
|
/* */
|
|
/* */
|
|
/* INPUT */
|
|
/* */
|
|
/* attr Address of the mutex attributes */
|
|
/* object to be destroyed. */
|
|
/* */
|
|
/* OUTPUT */
|
|
/* */
|
|
/* 0 If successful */
|
|
/* Value In case of any error or the results */
|
|
/* of referencing the object after it */
|
|
/* has been destroyed. */
|
|
/* */
|
|
/* CALLS */
|
|
/* */
|
|
/* None */
|
|
/* */
|
|
/* CALLED BY */
|
|
/* */
|
|
/* Application Code */
|
|
/* */
|
|
/* RELEASE HISTORY */
|
|
/* */
|
|
/* DATE NAME DESCRIPTION */
|
|
/* */
|
|
/* 06-02-2021 William E. Lamie Initial Version 6.1.7 */
|
|
/* */
|
|
/**************************************************************************/
|
|
INT pthread_mutexattr_destroy(pthread_mutexattr_t *attr)
|
|
{
|
|
|
|
/* Clear the flag and make this pthread_mutexattr structure free */
|
|
/* First check the attribute object is already destroyed? */
|
|
if (attr->in_use == TX_FALSE)
|
|
{
|
|
posix_errno = EINVAL;
|
|
posix_set_pthread_errno(EINVAL);
|
|
return(EINVAL);
|
|
}
|
|
else
|
|
{
|
|
/* No then destroy the attributes object */
|
|
attr->in_use = TX_FALSE;
|
|
return(OK);
|
|
}
|
|
}
|