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

📄 lwbt_memp.c

📁 蓝牙协议源代码 bluetooth stack for lwip
💻 C
字号:
/* * Copyright (c) 2001-2003 Swedish Institute of Computer Science. * All rights reserved. *  * Redistribution and use in source and binary forms, with or without modification,  * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, *    this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, *    this list of conditions and the following disclaimer in the documentation *    and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products *    derived from this software without specific prior written permission.  * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY  * OF SUCH DAMAGE. * * This file is part of the lwBT Bluetooth stack. *  * Author: Conny Ohult <conny@sm.luth.se> * */#include "netif/lwbt/lwbt_memp.h"#include "netif/lwbt/hci.h"#include "netif/lwbt/l2cap.h"#include "netif/lwbt/sdp.h"#include "netif/lwbt/rfcomm.h"#include "netif/lwbt/ppp.h"#include "lwbtopts.h"#include "lwip/mem.h"struct memp {  struct memp *next;};static struct memp *memp_tab[MEMP_LWBT_MAX];static const u16_t memp_sizes[MEMP_LWBT_MAX] = {  sizeof(struct hci_pcb),  sizeof(struct hci_link),  sizeof(struct hci_inq_res),  sizeof(struct l2cap_pcb),  sizeof(struct l2cap_pcb_listen),  sizeof(struct l2cap_sig),  sizeof(struct l2cap_seg),  sizeof(struct sdp_pcb),  sizeof(struct sdp_record),  sizeof(struct rfcomm_pcb),  sizeof(struct rfcomm_pcb_listen),  sizeof(struct ppp_pcb),  sizeof(struct ppp_req)};static const u16_t memp_num[MEMP_LWBT_MAX] = {  MEMP_NUM_HCI_PCB,  MEMP_NUM_HCI_LINK,  MEMP_NUM_HCI_INQ,  MEMP_NUM_L2CAP_PCB,  MEMP_NUM_L2CAP_PCB_LISTEN,  MEMP_NUM_L2CAP_SIG,  MEMP_NUM_L2CAP_SEG,  MEMP_NUM_SDP_PCB,  MEMP_NUM_SDP_RECORD,  MEMP_NUM_RFCOMM_PCB,  MEMP_NUM_RFCOMM_PCB_LISTEN,  MEMP_NUM_PPP_PCB,  MEMP_NUM_PPP_REQ};static u8_t memp_memory[(MEMP_NUM_HCI_PCB *			 MEM_ALIGN_SIZE(sizeof(struct hci_pcb) +					sizeof(struct memp)) +			MEMP_NUM_HCI_LINK *			 MEM_ALIGN_SIZE(sizeof(struct hci_link) +					sizeof(struct memp)) +			MEMP_NUM_HCI_INQ *			 MEM_ALIGN_SIZE(sizeof(struct hci_inq_res) +					sizeof(struct memp)) +			MEMP_NUM_L2CAP_PCB *			 MEM_ALIGN_SIZE(sizeof(struct l2cap_pcb) +					sizeof(struct memp)) +			MEMP_NUM_L2CAP_PCB_LISTEN *			 MEM_ALIGN_SIZE(sizeof(struct l2cap_pcb_listen) +					sizeof(struct memp)) +			MEMP_NUM_L2CAP_SIG *			 MEM_ALIGN_SIZE(sizeof(struct l2cap_sig) +					sizeof(struct memp)) +			MEMP_NUM_L2CAP_SEG *			 MEM_ALIGN_SIZE(sizeof(struct l2cap_seg) +					sizeof(struct memp)) +			MEMP_NUM_SDP_PCB *			 MEM_ALIGN_SIZE(sizeof(struct sdp_pcb) +					sizeof(struct memp)) +			MEMP_NUM_SDP_RECORD *			 MEM_ALIGN_SIZE(sizeof(struct sdp_record) +					sizeof(struct memp)) +			MEMP_NUM_RFCOMM_PCB *			 MEM_ALIGN_SIZE(sizeof(struct rfcomm_pcb) +					sizeof(struct memp)) +			MEMP_NUM_RFCOMM_PCB_LISTEN *			 MEM_ALIGN_SIZE(sizeof(struct rfcomm_pcb_listen) +					sizeof(struct memp)) +			MEMP_NUM_PPP_PCB *			 MEM_ALIGN_SIZE(sizeof(struct ppp_pcb) +					sizeof(struct memp)) +			MEMP_NUM_PPP_REQ *			 MEM_ALIGN_SIZE(sizeof(struct ppp_req) +					sizeof(struct memp)))];/*-----------------------------------------------------------------------------------*/voidlwbt_memp_init(void){  struct memp *m, *memp;  u16_t i, j;  u16_t size;  memp = (struct memp *)&memp_memory[0];  for(i = 0; i < MEMP_LWBT_MAX; ++i) {    size = MEM_ALIGN_SIZE(memp_sizes[i] + sizeof(struct memp));    if(memp_num[i] > 0) {      memp_tab[i] = memp;      m = memp;            for(j = 0; j < memp_num[i]; ++j) {	m->next = (struct memp *)MEM_ALIGN((u8_t *)m + size);	memp = m;	m = m->next;      }      memp->next = NULL;      memp = m;    } else {      memp_tab[i] = NULL;    }  }}/*-----------------------------------------------------------------------------------*/void *lwbt_memp_malloc(lwbt_memp_t type){  struct memp *memp;  void *mem;  memp = memp_tab[type];    if(memp != NULL) {        memp_tab[type] = memp->next;        memp->next = NULL;    mem = MEM_ALIGN((u8_t *)memp + sizeof(struct memp));    /* initialize memp memory with zeroes */    memset(mem, 0, memp_sizes[type]);	    return mem;  } else {    return NULL;  }}/*-----------------------------------------------------------------------------------*/voidlwbt_memp_free(lwbt_memp_t type, void *mem){  struct memp *memp;  if(mem == NULL) {    return;  }  memp = (struct memp *)((u8_t *)mem - sizeof(struct memp));    memp->next = memp_tab[type];   memp_tab[type] = memp;  return;}/*-----------------------------------------------------------------------------------*/

⌨️ 快捷键说明

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