Files
Bo Chen (from Dev Box) 8276bcf711 Update copyright.
2024-01-29 13:51:15 +08:00

114 lines
5.3 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 */
/* */
/* sem_unlink PORTABLE C */
/* 6.2.0 */
/* AUTHOR */
/* */
/* William E. Lamie, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This routine removes the string from the semaphore name table ,and */
/* marks the corresponding semaphore for destruction. */
/* */
/* INPUT */
/* */
/* name Semaphore name. */
/* */
/* OUTPUT */
/* */
/* OK If successful */
/* ERROR IF fails */
/* */
/* CALLS */
/* */
/* posix_find_sem checks the name of semaphore with the names */
/* of the already created semaphore. */
/* posix_sem_reset Resets the semaphore structure */
/* */
/* CALLED BY */
/* */
/* Application Code */
/* */
/* RELEASE HISTORY */
/* */
/* DATE NAME DESCRIPTION */
/* */
/* 06-02-2021 William E. Lamie Initial Version 6.1.7 */
/* 10-31-2022 Scott Larson Remove double parenthesis, */
/* resulting in version 6.2.0 */
/* */
/**************************************************************************/
INT sem_unlink(const CHAR * name)
{
struct POSIX_SEMAPHORE_STRUCT * sem;
ULONG len;
/* Checking for the invalid length. */
len = strlen(name);
if(len > SEM_NAME_MAX)
{
/* Return appropriate error. */
posix_errno=ENAMETOOLONG;
posix_set_pthread_errno(ENAMETOOLONG);
/* Return error. */
return(ERROR);
}
if(!(sem=posix_find_sem(name)))
{
/* Set error in global variable. */
posix_errno = ENOENT;
posix_set_pthread_errno(ENOENT);
/* Return Error. */
return(ERROR);
}
if(sem)
sem->unlink_flag =TX_TRUE;
/* Check for the count. */
if(sem->count == 0)
{
posix_sem_reset(sem );
sem = NULL;
}
return(OK);
}