⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fifo.h

📁 libosip-0.9.7源码
💻 H
字号:
/*  The oSIP library implements the Session Initiation Protocol (SIP -rfc3261-)  Copyright (C) 2001,2002,2003  Aymeric MOIZARD jack@atosc.org    This library is free software; you can redistribute it and/or  modify it under the terms of the GNU Lesser General Public  License as published by the Free Software Foundation; either  version 2.1 of the License, or (at your option) any later version.    This library is distributed in the hope that it will be useful,  but WITHOUT ANY WARRANTY; without even the implied warranty of  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  Lesser General Public License for more details.    You should have received a copy of the GNU Lesser General Public  License along with this library; if not, write to the Free Software  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA*/#ifndef _FIFO_H_#define _FIFO_H_#ifdef OSIP_MT#include <osip/sema.h>#endif#include <osip/list.h>/** * @file fifo.h * @brief oSIP fifo Routines * * This is a very simple implementation of a fifo. * <BR>There is not much to say about it... *//** * @defgroup oSIP_FIFO oSIP fifo Handling * @ingroup oSIP * @{ */#ifdef __cplusplusextern "C"{#endif#ifndef DOXYGEN#define MAX_LEN 1000  typedef enum  { ok, plein, vide }  fifo_etat;#endif/** * Structure for referencing a fifo. * @defvar fifo_t */  typedef struct fifo_t fifo_t;  struct fifo_t  {#ifdef OSIP_MT    smutex_t *qislocked;    ssem_t *qisempty;#endif    list_t *queue;    int nb_elt;    fifo_etat etat;  };/** * Initialise a fifo_t element. * NOTE: this element MUST be previously allocated. * @param ff The element to initialise. */  void fifo_init (fifo_t * ff);/** * Free a fifo element. * @param ff The element to work on. */  void fifo_free (fifo_t * ff);/** * Insert an element in a fifo (at the beginning). * @param ff The element to work on. * @param element The pointer on the element to insert. */  int fifo_insert (fifo_t * ff, void *el);/** * Add an element in a fifo. * @param ff The element to work on. * @param element The pointer on the element to add. */  int fifo_add (fifo_t * ff, void *element);/** * Get the number of element in a fifo. * @param ff The element to work on. */  int fifo_size (fifo_t * ff);#ifdef OSIP_MT/** * Get an element from a fifo or block until one is added. * @param ff The element to work on. */  void *fifo_get (fifo_t * ff);#endif/** * Try to get an element from a fifo, but do not block if there is no element. * @param ff The element to work on. */  void *fifo_tryget (fifo_t * ff);/** @} */#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -