Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file IxOsalOsMsgQ.c (eCos) |
| 3 | * |
| 4 | * @brief OS-specific Message Queue implementation. |
| 5 | * |
| 6 | * |
| 7 | * @par |
| 8 | * IXP400 SW Release version 1.5 |
| 9 | * |
| 10 | * -- Copyright Notice -- |
| 11 | * |
| 12 | * @par |
| 13 | * Copyright 2001-2005, Intel Corporation. |
| 14 | * All rights reserved. |
| 15 | * |
| 16 | * @par |
Wolfgang Denk | cb3761e | 2013-07-28 22:12:47 +0200 | [diff] [blame] | 17 | * SPDX-License-Identifier: BSD-3-Clause |
Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 18 | * @par |
| 19 | * -- End of Copyright Notice -- |
| 20 | */ |
| 21 | |
| 22 | #include "IxOsal.h" |
| 23 | |
| 24 | /******************************* |
| 25 | * Public functions |
| 26 | *******************************/ |
| 27 | PUBLIC IX_STATUS |
| 28 | ixOsalMessageQueueCreate (IxOsalMessageQueue * queue, |
| 29 | UINT32 msgCount, UINT32 msgLen) |
| 30 | { |
| 31 | diag_printf("%s called\n", __FUNCTION__); |
| 32 | return IX_FAIL; |
| 33 | } |
| 34 | |
| 35 | PUBLIC IX_STATUS |
| 36 | ixOsalMessageQueueDelete (IxOsalMessageQueue * queue) |
| 37 | { |
| 38 | diag_printf("%s called\n", __FUNCTION__); |
| 39 | return IX_FAIL; |
| 40 | } |
| 41 | |
| 42 | PUBLIC IX_STATUS |
| 43 | ixOsalMessageQueueSend (IxOsalMessageQueue * queue, UINT8 * message) |
| 44 | { |
| 45 | diag_printf("%s called\n", __FUNCTION__); |
| 46 | return IX_FAIL; |
| 47 | } |
| 48 | |
| 49 | PUBLIC IX_STATUS |
| 50 | ixOsalMessageQueueReceive (IxOsalMessageQueue * queue, UINT8 * message) |
| 51 | { |
| 52 | diag_printf("%s called\n", __FUNCTION__); |
| 53 | return IX_FAIL; |
| 54 | } |
| 55 | |