summaryrefslogtreecommitdiff
path: root/utility/rtos_compatibility_layers/posix/px_mq_putback_queue.c
blob: e3d67cad56bfca9662e75154fbc7908a0811c5e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/***************************************************************************
 * Copyright (c) 2024 Microsoft Corporation
 * Copyright (c) 2026-present Eclipse ThreadX contributors
 *
 * 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        */
/*                                                                        */
/*    posix_putback_queue                                 PORTABLE C      */
/*                                                           6.1.7        */
/*  AUTHOR                                                                */
/*                                                                        */
/*    William E. Lamie, Microsoft Corporation                             */
/*                                                                        */
/*  DESCRIPTION                                                           */
/*                                                                        */
/*    This function "puts back" a ThreadX queue into the POSIX            */
/*    variable length message queue pool.                                 */
/*                                                                        */
/*  INPUT                                                                 */
/*                                                                        */
/*    qid                                   Queue ID                      */
/*                                                                        */
/*  OUTPUT                                                                */
/*                                                                        */
/*    None                                                                */
/*                                                                        */
/*  CALLS                                                                 */
/*                                                                        */
/*    posix_memory_putback                  Free memory                   */
/*                                                                        */
/*  CALLED BY                                                             */
/*                                                                        */
/*    POSIX internal Code                                                 */
/*                                                                        */
/**************************************************************************/
VOID posix_putback_queue(TX_QUEUE * qid)
{

POSIX_MSG_QUEUE   * q_ptr;

    /* Convert TX_QUEUE into POSIX_QUEUE datatype.  */
    q_ptr = MAKE_POSIX_QUEUE(qid);

    /* Free the queue's memory.  */
    posix_memory_release(q_ptr->storage);

    /* This queue is no longer in use.  */
    q_ptr->in_use = TX_FALSE;
    return;
}