2024-01-29 13:51:15 +08:00
|
|
|
/***************************************************************************
|
|
|
|
* 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
|
|
|
|
**************************************************************************/
|
2020-09-30 15:42:41 -07:00
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
/**************************************************************************/
|
2021-06-02 06:45:05 +00:00
|
|
|
/** */
|
|
|
|
/** POSIX wrapper for THREADX */
|
2020-09-30 15:42:41 -07:00
|
|
|
/** */
|
|
|
|
/** */
|
|
|
|
/** */
|
|
|
|
/**************************************************************************/
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
/* Include necessary system files. */
|
|
|
|
|
2021-07-28 07:24:02 +00:00
|
|
|
#include "tx_api.h" /* Threadx API */
|
|
|
|
#include "pthread.h" /* Posix API */
|
|
|
|
#include "px_int.h" /* Posix helper functions */
|
2020-09-30 15:42:41 -07:00
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* FUNCTION RELEASE */
|
|
|
|
/* */
|
2021-06-02 06:45:05 +00:00
|
|
|
/* posix_find_sem PORTABLE C */
|
2021-07-28 07:24:02 +00:00
|
|
|
/* 6.1.7 */
|
2020-09-30 15:42:41 -07:00
|
|
|
/* AUTHOR */
|
|
|
|
/* */
|
|
|
|
/* William E. Lamie, Microsoft Corporation */
|
|
|
|
/* */
|
|
|
|
/* DESCRIPTION */
|
|
|
|
/* */
|
2021-06-02 06:45:05 +00:00
|
|
|
/* This routine returns sem descriptor indicating that name of */
|
|
|
|
/* in the semaphore exists. */
|
2020-09-30 15:42:41 -07:00
|
|
|
/* */
|
|
|
|
/* INPUT */
|
|
|
|
/* */
|
2021-06-02 06:45:05 +00:00
|
|
|
/* const char * name Name of the semaphore. */
|
2020-09-30 15:42:41 -07:00
|
|
|
/* */
|
|
|
|
/* OUTPUT */
|
|
|
|
/* */
|
2021-06-02 06:45:05 +00:00
|
|
|
/* sem If successful */
|
2021-07-28 07:24:02 +00:00
|
|
|
/* ERROR If fails */
|
2020-09-30 15:42:41 -07:00
|
|
|
/* */
|
|
|
|
/* CALLS */
|
|
|
|
/* */
|
2021-06-02 06:45:05 +00:00
|
|
|
/* None */
|
2020-09-30 15:42:41 -07:00
|
|
|
/* */
|
|
|
|
/* CALLED BY */
|
|
|
|
/* */
|
2021-06-02 06:45:05 +00:00
|
|
|
/* POSIX internal Code */
|
2020-09-30 15:42:41 -07:00
|
|
|
/* */
|
|
|
|
/* RELEASE HISTORY */
|
|
|
|
/* */
|
|
|
|
/* DATE NAME DESCRIPTION */
|
|
|
|
/* */
|
2021-07-28 07:24:02 +00:00
|
|
|
/* 06-02-2021 William E. Lamie Initial Version 6.1.7 */
|
|
|
|
/* 08-02-2021 Scott Larson Removed unneeded semicolon, */
|
|
|
|
/* resulting in version 6.1.8 */
|
2020-09-30 15:42:41 -07:00
|
|
|
/* */
|
|
|
|
/**************************************************************************/
|
2021-06-02 06:45:05 +00:00
|
|
|
sem_t* posix_find_sem(const CHAR * name)
|
|
|
|
{
|
2020-09-30 15:42:41 -07:00
|
|
|
|
2021-06-02 06:45:05 +00:00
|
|
|
sem_t *sem;
|
|
|
|
ULONG index;
|
|
|
|
ULONG match;
|
|
|
|
CHAR *dummy_name;
|
|
|
|
CHAR *dummy_sem_name;
|
|
|
|
ULONG namelength;
|
2020-09-30 15:42:41 -07:00
|
|
|
|
2021-06-02 06:45:05 +00:00
|
|
|
/* For checking the name. */
|
|
|
|
for(index = 0,sem = posix_sem_pool;index < SEM_NSEMS_MAX;index ++,sem ++)
|
|
|
|
{
|
|
|
|
/* Assume the worst case. */
|
|
|
|
match = TX_FALSE;
|
2020-09-30 15:42:41 -07:00
|
|
|
|
2021-06-02 06:45:05 +00:00
|
|
|
dummy_sem_name = sem->sem_name;
|
2020-09-30 15:42:41 -07:00
|
|
|
|
2021-06-02 06:45:05 +00:00
|
|
|
for(namelength = 0 ,dummy_name = (CHAR *)name ; namelength < 10 ;
|
|
|
|
namelength ++, dummy_name++,dummy_sem_name ++)
|
|
|
|
{
|
|
|
|
/* Copy name. */
|
|
|
|
if(* dummy_name == * dummy_sem_name)
|
|
|
|
{
|
|
|
|
/* End of the string. */
|
2021-07-28 07:24:02 +00:00
|
|
|
if(* dummy_name == '\0')
|
2021-06-02 06:45:05 +00:00
|
|
|
{
|
|
|
|
match = TX_TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}/* Copy name. */
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2020-09-30 15:42:41 -07:00
|
|
|
|
2021-06-02 06:45:05 +00:00
|
|
|
/* Stop searching. */
|
|
|
|
if ( match == TX_TRUE)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}/* For each semaphore. */
|
|
|
|
if(match == TX_TRUE)
|
|
|
|
{
|
|
|
|
return(sem);
|
|
|
|
}
|
2020-09-30 15:42:41 -07:00
|
|
|
|
2021-06-02 06:45:05 +00:00
|
|
|
/* return NULL. */
|
|
|
|
sem = NULL;
|
|
|
|
return(sem);
|
|
|
|
}
|